fusenapi/server/home-user-auth/internal/handler/usercontactservicehandler.go

22 lines
513 B
Go
Raw Normal View History

2023-06-28 11:32:41 +00:00
package handler
import (
"net/http"
"fusenapi/server/home-user-auth/internal/logic"
"fusenapi/server/home-user-auth/internal/svc"
"fusenapi/server/home-user-auth/internal/types"
)
func UserContactServiceHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.RequestContactService
2023-07-21 06:20:21 +00:00
2023-06-28 11:32:41 +00:00
// 创建一个业务逻辑层实例
l := logic.NewUserContactServiceLogic(r.Context(), svcCtx)
resp := l.UserContactService(&req, userinfo)
2023-07-21 06:20:21 +00:00
2023-06-28 11:32:41 +00:00
}
}