service/api/interfaces/notif_builder_handler.go

8 lines
160 B
Go

package interfaces
import "github.com/gin-gonic/gin"
type NotifBuilderHandler interface {
Handle(ctx *gin.Context) func(scenes ...int64) func(args ...any)
}