diff --git a/internal/config/config.go b/internal/config/config.go index 1e33188..ac6dd3c 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -6,13 +6,13 @@ import ( "github.com/BurntSushi/toml" ) -type WH40K struct { +type Ordoor struct { DataDir string `toml:"data_dir"` VideoPlayer []string `toml:"video_player"` } type Config struct { - WH40K `toml:"ordoor"` + Ordoor `toml:"ordoor"` } func Load(filename string) (*Config, error) {