mirror of
https://gitee.com/johng/gf
synced 2026-07-01 03:21:22 +08:00
9 lines
127 B
Go
9 lines
127 B
Go
package ghttp
|
|
|
|
|
|
// 控制器接口
|
|
type Controller interface {
|
|
Init(*Server, *ClientRequest, *ServerResponse)
|
|
Shut()
|
|
}
|