arimelody.me/api/api.go
ari melody 5631c4bd87 added stuff, broke some other stuff, made admin auth!
Signed-off-by: ari melody <ari@arimelody.me>
2024-08-31 01:52:31 +01:00

13 lines
244 B
Go

package api
import (
"net/http"
"html/template"
)
func Handle(writer http.ResponseWriter, req *http.Request, root *template.Template) int {
writer.WriteHeader(501)
writer.Write([]byte("501 Not Implemented"))
return 501;
}