2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 17:17:13 +08:00
Files
panel/app/http/kernel.go
2023-11-04 14:27:15 +08:00

15 lines
302 B
Go

package http
import (
"github.com/goravel/framework/contracts/http"
)
type Kernel struct {
}
// The application's global HTTP middleware stack.
// These middleware are run during every request to your application.
func (kernel Kernel) Middleware() []http.Middleware {
return []http.Middleware{}
}