package app type AppConfig struct { DataDir string } func NewAppConfig() AppConfig { return AppConfig{ DataDir: "data/", } }