Files
tyc-server-v2/app/main/api/internal/handler/notification/getnotificationshandler.go
2026-01-22 16:04:12 +08:00

18 lines
445 B
Go

package notification
import (
"net/http"
"tyc-server/app/main/api/internal/logic/notification"
"tyc-server/app/main/api/internal/svc"
"tyc-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)
}
}