Skip to content

Commit

Permalink
Unify structs
Browse files Browse the repository at this point in the history
  • Loading branch information
zMoooooritz committed Mar 9, 2024
1 parent f594c07 commit e771f4f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
)

type Configuration struct {
Settings Settings `yaml:"Settings,omitempty"`
Keys Keys `yaml:"Keys,omitempty"`
Applications Applications `yaml:"Application,omitempty"`
Theme Theme `yaml:"Theme,omitempty"`
Settings Settings `yaml:"Settings"`
Keys Keys `yaml:"Keys"`
Applications Applications `yaml:"Application"`
Theme Theme `yaml:"Theme"`
}

type Settings struct {
Expand Down Expand Up @@ -49,10 +49,10 @@ type Theme struct {
}

type Applications struct {
Image Application `yaml:"Image,omitempty"`
Audio Application `yaml:"Audio,omitempty"`
Video Application `yaml:"Video,omitempty"`
HTML Application `yaml:"HTML,omitempty"`
Image Application `yaml:"Image"`
Audio Application `yaml:"Audio"`
Video Application `yaml:"Video"`
HTML Application `yaml:"HTML"`
}

type Application struct {
Expand Down

0 comments on commit e771f4f

Please sign in to comment.