This commit is contained in:
crusader 2017-11-28 19:16:00 +09:00
parent c0a59e8c21
commit cf37f4cd49
2 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,7 @@
package gateway
import "git.loafle.net/commons_go/rpc"
type ServletHandler interface {
type GatewayServletHandler interface {
rpc.ServletHandler
}

View File

@ -4,6 +4,6 @@ import (
"git.loafle.net/commons_go/rpc"
)
type ServletHandlers struct {
type GatewayServletHandlers struct {
rpc.ServletHandlers
}