mirror of
https://github.com/tnb-labs/panel.git
synced 2026-09-01 14:55:12 +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
|
|
}
|
|
}
|