2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 20:57:19 +08:00
Files
panel/app/http/controllers/file_controller.go
2023-07-19 00:24:41 +08:00

19 lines
283 B
Go

package controllers
import (
"github.com/goravel/framework/contracts/http"
)
type FileController struct {
// Dependent services
}
func NewFileController() *FileController {
return &FileController{
// Inject services
}
}
func (r *FileController) Index(ctx http.Context) {
}