From d4d8a50ce499ba580780d568fa2f2fee7ec9f93d Mon Sep 17 00:00:00 2001 From: Nick Thomas Date: Sun, 22 Mar 2020 17:56:24 +0000 Subject: [PATCH] Catch one more use of WH40K --- internal/config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {