package console import ( "github.com/goravel/framework/contracts/console" "github.com/goravel/framework/contracts/schedule" "panel/app/console/commands" ) type Kernel struct { } func (kernel *Kernel) Schedule() []schedule.Event { return []schedule.Event{} } func (kernel *Kernel) Commands() []console.Command { return []console.Command{ &commands.Panel{}, &commands.Monitoring{}, } }