mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 18:27:13 +08:00
20 lines
334 B
Go
20 lines
334 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/goravel/framework/contracts/http"
|
|
)
|
|
|
|
type ContainerController struct {
|
|
// Dependent services
|
|
}
|
|
|
|
func NewContainerController() *ContainerController {
|
|
return &ContainerController{
|
|
// Inject services
|
|
}
|
|
}
|
|
|
|
func (r *ContainerController) Index(ctx http.Context) http.Response {
|
|
return nil
|
|
}
|