mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 04:30:13 +08:00
12 lines
170 B
Go
12 lines
170 B
Go
package controllers
|
|
|
|
type FileController struct {
|
|
// Dependent services
|
|
}
|
|
|
|
func NewFileController() *FileController {
|
|
return &FileController{
|
|
// Inject services
|
|
}
|
|
}
|