13 lines
226 B
Go
13 lines
226 B
Go
package server
|
|
|
|
import (
|
|
"git.loafle.net/commons_go/rpc"
|
|
"git.loafle.net/commons_go/rpc/protocol"
|
|
)
|
|
|
|
type ServerHandler interface {
|
|
rpc.ServerHandler
|
|
|
|
Invoke(codec protocol.RegistryCodec) (result interface{}, err error)
|
|
}
|