10 lines
134 B
Go
10 lines
134 B
Go
|
package servlet
|
||
|
|
||
|
import (
|
||
|
cwf "git.loafle.net/commons_go/websocket_fasthttp"
|
||
|
)
|
||
|
|
||
|
type ServletHandler interface {
|
||
|
cwf.SocketHandler
|
||
|
}
|