2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 07:57:21 +08:00
Files
panel/app/console/kernel.go
2023-06-22 00:09:56 +08:00

21 lines
377 B
Go

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.Monitoring{},
}
}