service/api/interfaces/notif_builder_handler.go

8 lines
160 B
Go
Raw Normal View History

2024-11-06 17:37:46 +08:00
package interfaces
import "github.com/gin-gonic/gin"
type NotifBuilderHandler interface {
2024-11-08 16:30:02 +08:00
Handle(ctx *gin.Context) func(scenes ...int64) func(args ...any)
2024-11-06 17:37:46 +08:00
}