вызываю
в коде ничего необычного
server := new(assi_oauth.Server)
if err := server.Run(viper.GetString("port"), handler.InitRoutes()); err != nil {
log.Fatal(err)
}
func (s *Server) Run(port string, handler http.Handler) error {
s.httpServer = &http.Server{
Addr: ":" + port,
Handler: handler,
MaxHeaderBytes: 1 << 20, // 1 MB
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
}
return s.httpServer.ListenAndServe()
}
На какой ОС запускаете?
Обсуждают сегодня