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

19 lines
319 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
IsChannel bool
IsError bool
Error string
Return any
}