feat(routes): add handler for scheduled traffic statistics

This commit is contained in:
Chang lue Tsen 2025-09-01 08:14:57 -04:00
parent 4432115844
commit 1745c7194b

View File

@ -39,4 +39,7 @@ func RegisterHandlers(mux *asynq.ServeMux, serverCtx *svc.ServiceContext) {
// ScheduledBatchSendEmail
mux.Handle(types.ScheduledBatchSendEmail, emailLogic.NewBatchEmailLogic(serverCtx))
// ScheduledTrafficStat
mux.Handle(types.SchedulerTrafficStat, traffic.NewStatLogic(serverCtx))
}