1 package main 2 3 type portalConfig struct { 4 Command string 5 Host []string `yaml:",flow"` 6 } 7 8 type appConfig struct { 9 Portals map[string]*portalConfig 10 } 11 12 var config = &appConfig{} 13
View as plain text