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