2024-04-16 21:58:39 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2024-07-31 03:09:22 +00:00
|
|
|
"net/http"
|
|
|
|
"html/template"
|
2024-04-16 21:58:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Handle(writer http.ResponseWriter, req *http.Request, root *template.Template) int {
|
2024-07-31 03:09:22 +00:00
|
|
|
writer.WriteHeader(501)
|
|
|
|
writer.Write([]byte("501 Not Implemented"))
|
|
|
|
return 501;
|
2024-04-16 21:58:39 +00:00
|
|
|
}
|