Просмотр исходного кода

added in comment about admin POST stuff coming later

Steve Brunton 9 лет назад
Родитель
Сommit
3d039bf8b6
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      web/admin.go

+ 1 - 0
web/admin.go

@@ -33,6 +33,7 @@ func (h *adminHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
 	switch r.Method {
 	case "GET":
 		adminGet(h.ctx, w, r)
+	// POST coming later to be able to reload if needed.
 	default:
 		writeJSONError(w, http.StatusText(http.StatusMethodNotAllowed))
 	}