func main() { xweb.RootApp().AppConfig.SessionOn = false xweb.AddRouter("/", &MainAction{}) config, err := xweb.SimpleTLSConfig("cert.pem", "key.pem") if err != nil { fmt.Println(err) return } xweb.RunTLS("0.0.0.0:9999", config) }
func main() { xweb.RootApp().AppConfig.SessionOn = false xweb.AddRouter("/", &MainAction{}) xweb.Run("0.0.0.0:9999") }
func main() { xweb.AddRouter("/", &MainAction{}) xweb.Run("0.0.0.0:9999") }