Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8915f75

Browse files
committed
fix
1 parent d6e5207 commit 8915f75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

coderd/deprecated.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
// @Param templateversion path string true "Template version ID" format(uuid)
1515
// @Success 200
1616
// @Router /templateversions/{templateversion}/parameters [get]
17-
func (api *API) templateVersionParametersDeprecated(rw http.ResponseWriter, r *http.Request) {
17+
func (_ *API) templateVersionParametersDeprecated(rw http.ResponseWriter, r *http.Request) {
1818
httpapi.Write(r.Context(), rw, http.StatusOK, []struct{}{})
1919
}
2020

@@ -26,6 +26,6 @@ func (api *API) templateVersionParametersDeprecated(rw http.ResponseWriter, r *h
2626
// @Param templateversion path string true "Template version ID" format(uuid)
2727
// @Success 200
2828
// @Router /templateversions/{templateversion}/schema [get]
29-
func (api *API) templateVersionSchemaDeprecated(rw http.ResponseWriter, r *http.Request) {
29+
func (_ *API) templateVersionSchemaDeprecated(rw http.ResponseWriter, r *http.Request) {
3030
httpapi.Write(r.Context(), rw, http.StatusOK, []struct{}{})
3131
}

0 commit comments

Comments
 (0)