1
0
Fork 0

Removed unused HTTP methods handler setters.

This commit is contained in:
Alexander Andreev 2022-06-30 00:22:38 +04:00
parent 0fcebc15ce
commit 42bf665a7e
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
1 changed files with 0 additions and 12 deletions

View File

@ -36,18 +36,6 @@ func (s *HttpServer) POST(path string, handler http.HandlerFunc) {
s.router.Handler(http.MethodPost, path, handler)
}
func (s *HttpServer) PATCH(path string, handler http.HandlerFunc) {
s.router.Handler(http.MethodPatch, path, handler)
}
func (s *HttpServer) PUT(path string, handler http.HandlerFunc) {
s.router.Handler(http.MethodPut, path, handler)
}
func (s *HttpServer) DELETE(path string, handler http.HandlerFunc) {
s.router.Handler(http.MethodDelete, path, handler)
}
func (s *HttpServer) ServeStatic(path string, fsys http.FileSystem) {
s.router.ServeFiles(path, fsys)
}