8 lines
146 B
Go
8 lines
146 B
Go
|
package interfaces
|
||
|
|
||
|
import "github.com/gin-gonic/gin"
|
||
|
|
||
|
type NotifBuilderHandler interface {
|
||
|
Handle(ctx *gin.Context, scene int64, args ...any)
|
||
|
}
|