onasty/internal/transport/http/httpserver/httpserver.go(view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
package httpserver
import (
"context"
"net/http"
"time"
)
type Server struct {
http *http.Server
}
func NewServer(port string, handler http.Handler) *Server {
// TODO: add those settings to the config module
return &Server{
http: &http.Server{
Addr: ":" + port,
Handler: handler,
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
MaxHeaderBytes: 1 << 20, // 1mb
},
}
}
func (s *Server) Start() error {
return s.http.ListenAndServe()
}
func (s *Server) Stop(ctx context.Context) error {
return s.http.Shutdown(ctx)
}
|