mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 13:18:01 +08:00
16 lines
172 B
Go
16 lines
172 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/frame/g"
|
|
"github.com/gogf/gf/net/ghttp"
|
|
)
|
|
|
|
type T struct {
|
|
ghttp.Plugin
|
|
}
|
|
|
|
func main() {
|
|
s := g.Server()
|
|
s.Plugin(new(T))
|
|
}
|