1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package main import ( /* mandibleConf "mandible/config" mandible "mandible/server" */ "mandible/config" mandible "mandible/server" "os" ) func main() { configFile := os.Getenv("IMGUR_GO_CONF") config := config.NewConfiguration(configFile) server := mandible.CreateServer(config) server.Start() }