瀏覽代碼

edit meeting handler.

master
Patrick Peng Sun 8 年之前
父節點
當前提交
398cbd49de
共有 2 個檔案被更改,包括 11 行新增0 行删除
  1. +10
    -0
      editEvent.go
  2. +1
    -0
      main.go

+ 10
- 0
editEvent.go 查看文件

@@ -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 查看文件

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


Loading…
取消
儲存