mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 19:37:18 +08:00
19 lines
281 B
Go
19 lines
281 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/goravel/framework/contracts/http"
|
|
)
|
|
|
|
type CronController struct {
|
|
//Dependent services
|
|
}
|
|
|
|
func NewCronController() *CronController {
|
|
return &CronController{
|
|
//Inject services
|
|
}
|
|
}
|
|
|
|
func (r *CronController) Index(ctx http.Context) {
|
|
}
|