17 lines
386 B
Go
17 lines
386 B
Go
package gateway
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.loafle.net/commons_go/rpc"
|
|
"git.loafle.net/commons_go/rpc/protocol"
|
|
)
|
|
|
|
type ServletHandlers struct {
|
|
rpc.ServletHandlers
|
|
}
|
|
|
|
func (sh *ServletHandlers) Invoke(servletCTX rpc.ServletContext, requestCodec protocol.RegistryCodec) (result interface{}, err error) {
|
|
return nil, fmt.Errorf("RPC Gateway Servlet Handler: Invoke is not implemented")
|
|
}
|