| package main | |||||
| import ( | |||||
| "fmt" | |||||
| "net/http" | |||||
| ) | |||||
| func editMeetingHandler(w http.ResponseWriter, r *http.Request) { | |||||
| fmt.Fprintf(w, "ok meeting handled") | |||||
| } |
| http.HandleFunc("/crmcache", crmcache) | http.HandleFunc("/crmcache", crmcache) | ||||
| http.HandleFunc("/spa/editprofile", spaEditProfile) | http.HandleFunc("/spa/editprofile", spaEditProfile) | ||||
| http.HandleFunc("/spa/livecast", liveCastHandler) | http.HandleFunc("/spa/livecast", liveCastHandler) | ||||
| http.HandleFunc("/spa/editmeeting", editMeetingHandler) | |||||
| http.ListenAndServe(":65500", nil) | http.ListenAndServe(":65500", nil) | ||||
| } | } | ||||