mirror of
https://gitee.com/johng/gf
synced 2026-06-30 11:05:11 +08:00
14 lines
460 B
Go
14 lines
460 B
Go
package ghttp
|
|
|
|
// RESTful控制器接口
|
|
type ControllerRest interface {
|
|
Get(*ClientRequest, *ServerResponse)
|
|
Put(*ClientRequest, *ServerResponse)
|
|
Post(*ClientRequest, *ServerResponse)
|
|
Delete(*ClientRequest, *ServerResponse)
|
|
Head(*ClientRequest, *ServerResponse)
|
|
Patch(*ClientRequest, *ServerResponse)
|
|
Connect(*ClientRequest, *ServerResponse)
|
|
Options(*ClientRequest, *ServerResponse)
|
|
Trace(*ClientRequest, *ServerResponse)
|
|
} |