good morning!!!!

Skip to content
Commits on Source (1)
  • a's avatar
    ok · dc819093
    a authored
    dc819093
......@@ -23,6 +23,8 @@ type (
StreamingConn = codec.Conn
// Request is the request object
Request = codec.Request
// Server is a jrpc server
Server = server.Server
)
type (
// BatchElem is an element of a batch request
......@@ -31,6 +33,9 @@ type (
var (
// NewServer creates a jrpc server
NewServer = server.NewServer
// DialContext is to dial a conn with context
DialContext = codecs.DialContext
// Dial is to dial a conn with context.Background()
......