2017-11-23 10:33:19 +00:00
|
|
|
package servlet
|
|
|
|
|
|
|
|
import (
|
2017-12-15 09:20:41 +00:00
|
|
|
"git.loafle.net/overflow/overflow_gateway_probe/servlet/auth"
|
2017-11-23 10:33:19 +00:00
|
|
|
"git.loafle.net/overflow/overflow_gateway_probe/servlet/data"
|
|
|
|
"git.loafle.net/overflow/overflow_gateway_probe/servlet/probe"
|
2017-12-15 09:20:41 +00:00
|
|
|
oogws "git.loafle.net/overflow/overflow_gateway_websocket/server"
|
2017-11-23 10:33:19 +00:00
|
|
|
)
|
|
|
|
|
2017-12-15 09:20:41 +00:00
|
|
|
func ServletInit(sh oogws.ServerHandler) {
|
|
|
|
auth.ServletInit(sh)
|
2017-11-23 10:33:19 +00:00
|
|
|
probe.ServletInit(sh)
|
2017-12-15 09:20:41 +00:00
|
|
|
data.ServletInit(sh)
|
2017-11-23 10:33:19 +00:00
|
|
|
}
|
|
|
|
|
2017-12-15 09:20:41 +00:00
|
|
|
func ServletDestroy() {
|
2017-11-23 10:33:19 +00:00
|
|
|
|
|
|
|
}
|