You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
851 B
35 lines
851 B
package server
|
|
|
|
import (
|
|
"customer/internal/conf"
|
|
"customer/internal/service"
|
|
|
|
"github.com/go-kratos/kratos/v2/log"
|
|
"github.com/go-kratos/kratos/v2/middleware/recovery"
|
|
"github.com/go-kratos/kratos/v2/transport/http"
|
|
)
|
|
|
|
// NewHTTPServer new a HTTP server used gin.
|
|
func NewHTTPServer(c *conf.Server,
|
|
chs *service.CustomerHttpService,
|
|
logger log.Logger) *http.Server {
|
|
var opts = []http.ServerOption{
|
|
http.Middleware(
|
|
recovery.Recovery(),
|
|
),
|
|
}
|
|
if c.Http.Network != "" {
|
|
opts = append(opts, http.Network(c.Http.Network))
|
|
}
|
|
if c.Http.Addr != "" {
|
|
opts = append(opts, http.Address(c.Http.Addr))
|
|
}
|
|
if c.Http.Timeout != nil {
|
|
opts = append(opts, http.Timeout(c.Http.Timeout.AsDuration()))
|
|
}
|
|
srv := http.NewServer(opts...)
|
|
//v1.RegisterGreeterHTTPServer(srv, greeter)
|
|
service.RegisterCustomerHttpServer(srv, chs)
|
|
return srv
|
|
}
|