Explorar el Código

edit meeting handler.

master
Patrick Peng Sun hace 8 años
padre
commit
398cbd49de
Se han modificado 2 ficheros con 11 adiciones y 0 borrados
  1. +10
    -0
      editEvent.go
  2. +1
    -0
      main.go

+ 10
- 0
editEvent.go Ver fichero

@@ -0,0 +1,10 @@
package main

import (
"fmt"
"net/http"
)

func editMeetingHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "ok meeting handled")
}

+ 1
- 0
main.go Ver fichero

@@ -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)
}


Cargando…
Cancelar
Guardar