1 // +build headless 2 3 package launchers 4 5 import ( 6 "os" 7 ) 8 9 func GUIHandle(ifc interface{}) (e error) { 10 W.Ln("GUI was disabled for this podbuild (server only version)") 11 os.Exit(1) 12 return nil 13 } 14