server-go/servlet.go

9 lines
151 B
Go
Raw Normal View History

2018-04-03 08:55:48 +00:00
package server
type Servlet interface {
2018-04-04 04:01:26 +00:00
ServletCtx(serverCtx ServerCtx) ServletCtx
Init(serverCtx ServerCtx) error
Destroy(serverCtx ServerCtx)
2018-04-03 08:55:48 +00:00
}