sesamy-go/pkg/event/tutorialbegin.go
2024-05-25 21:55:30 +02:00

13 lines
313 B
Go

package event
import (
"github.com/foomo/sesamy-go/pkg/event/params"
"github.com/foomo/sesamy-go/pkg/sesamy"
)
type TutorialBegin sesamy.Event[params.TutorialBegin]
func NewTutorialBegin(p params.TutorialBegin) sesamy.Event[params.TutorialBegin] {
return sesamy.NewEvent(sesamy.EventNameTutorialBegin, p)
}