good morning!!!!
Skip to content
GitLab
Explore
Sign in
Commits on Source (1)
ok
· dc819093
a
authored
Jun 26, 2023
dc819093
Hide whitespace changes
Inline
Side-by-side
exports.go
View file @
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()
...
...