mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 13:47:15 +08:00
19 lines
281 B
Go
19 lines
281 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) {
|
|
}
|