Documentation
¶
Index ¶
- Variables
- func NamespaceCreateH(w http.ResponseWriter, r *http.Request)
- func NamespaceInfoH(w http.ResponseWriter, r *http.Request)
- func NamespaceListH(w http.ResponseWriter, r *http.Request)
- func NamespaceRemoveH(w http.ResponseWriter, r *http.Request)
- func NamespaceUpdateH(w http.ResponseWriter, r *http.Request)
Constants ¶
This section is empty.
Variables ¶
View Source
var Routes = []http.Route{ {Path: "/namespace", Method: http.MethodGet, Middleware: []http.Middleware{middleware.Authenticate}, Handler: NamespaceListH}, {Path: "/namespace", Method: http.MethodPost, Middleware: []http.Middleware{middleware.Authenticate}, Handler: NamespaceCreateH}, {Path: "/namespace/{namespace}", Method: http.MethodGet, Middleware: []http.Middleware{middleware.Authenticate}, Handler: NamespaceInfoH}, {Path: "/namespace/{namespace}", Method: http.MethodPut, Middleware: []http.Middleware{middleware.Authenticate}, Handler: NamespaceUpdateH}, {Path: "/namespace/{namespace}", Method: http.MethodDelete, Middleware: []http.Middleware{middleware.Authenticate}, Handler: NamespaceRemoveH}, }
Functions ¶
func NamespaceCreateH ¶
func NamespaceCreateH(w http.ResponseWriter, r *http.Request)
func NamespaceInfoH ¶
func NamespaceInfoH(w http.ResponseWriter, r *http.Request)
func NamespaceListH ¶
func NamespaceListH(w http.ResponseWriter, r *http.Request)
func NamespaceRemoveH ¶
func NamespaceRemoveH(w http.ResponseWriter, r *http.Request)
func NamespaceUpdateH ¶
func NamespaceUpdateH(w http.ResponseWriter, r *http.Request)
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.