You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
715 B
31 lines
715 B
// ================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// You can delete these comments if you wish manually maintain this interface file.
|
|
// ================================================================================
|
|
|
|
package service
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
)
|
|
|
|
type (
|
|
IMiddleware interface {
|
|
CORS(r *ghttp.Request)
|
|
}
|
|
)
|
|
|
|
var (
|
|
localMiddleware IMiddleware
|
|
)
|
|
|
|
func Middleware() IMiddleware {
|
|
if localMiddleware == nil {
|
|
panic("implement not found for interface IMiddleware, forgot register?")
|
|
}
|
|
return localMiddleware
|
|
}
|
|
|
|
func RegisterMiddleware(i IMiddleware) {
|
|
localMiddleware = i
|
|
}
|