qnc-server-tob/app/main/api/internal/handler/notification/getnotificationshandler.go
2025-06-09 12:34:52 +08:00

18 lines
445 B
Go

package notification
import (
"net/http"
"qnc-server/app/main/api/internal/logic/notification"
"qnc-server/app/main/api/internal/svc"
"qnc-server/common/result"
)
func GetNotificationsHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
l := notification.NewGetNotificationsLogic(r.Context(), svcCtx)
resp, err := l.GetNotifications()
result.HttpResult(r, w, resp, err)
}
}