thread-master/apps/backend/internal/handler/notifications/unread_notification_count_h...

21 lines
522 B
Go

// Code generated by goctl. DO NOT EDIT.
// goctl <no value>
package notifications
import (
"net/http"
"apps/backend/internal/logic/notifications"
"apps/backend/internal/response"
"apps/backend/internal/svc"
)
func UnreadNotificationCountHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
l := notifications.NewUnreadNotificationCountLogic(r.Context(), svcCtx)
data, err := l.UnreadNotificationCount()
response.Write(r.Context(), w, data, err)
}
}