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