This repository has been archived on 2022-08-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
lrpc/internal/types/types.go

20 lines
339 B
Go

package types
// Request represents a request sent to the server
type Request struct {
ID string
Receiver string
Method string
Arg any
}
// Response represents a response returned by the server
type Response struct {
ID string
ChannelDone bool
IsChannel bool
IsError bool
Error string
Return any
}