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