1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
package main import ( "fmt" "github.com/test/goproject/handlers" ) //go:generate stringer -type=Color type Color int const ( Red Color = iota Green Blue ) var AppName = "TestApp" func main() { fmt.Println("Hello") handlers.Handle() } func init() { fmt.Println("init") }