Procházet zdrojové kódy

edit meeting handler.

master
Patrick Peng Sun před 9 roky
rodič
revize
398cbd49de
2 změnil soubory, kde provedl 11 přidání a 0 odebrání
  1. +10
    -0
      editEvent.go
  2. +1
    -0
      main.go

+ 10
- 0
editEvent.go Zobrazit soubor

package main

import (
"fmt"
"net/http"
)

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

+ 1
- 0
main.go Zobrazit soubor

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



Načítá se…
Zrušit
Uložit