arimelody.me/api/api.go

13 lines
244 B
Go
Raw Normal View History

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;
}