Catch one more use of WH40K

This commit is contained in:
2020-03-22 17:56:24 +00:00
parent 3cb32b8962
commit d4d8a50ce4

View File

@@ -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) {