| @@ -0,0 +1,10 @@ | |||
| package main | |||
| import ( | |||
| "fmt" | |||
| "net/http" | |||
| ) | |||
| func editMeetingHandler(w http.ResponseWriter, r *http.Request) { | |||
| fmt.Fprintf(w, "ok meeting handled") | |||
| } | |||
| @@ -66,6 +66,7 @@ func setupHTTPHandler() { | |||
| http.HandleFunc("/crmcache", crmcache) | |||
| http.HandleFunc("/spa/editprofile", spaEditProfile) | |||
| http.HandleFunc("/spa/livecast", liveCastHandler) | |||
| http.HandleFunc("/spa/editmeeting", editMeetingHandler) | |||
| http.ListenAndServe(":65500", nil) | |||
| } | |||