package config type Config struct { NetInterface string Htdocs string } func GetConfig() *Config { //TODO: Load config from file return &Config{ NetInterface: "127.0.0.1:80", Htdocs: "./htdocs", } }