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

20 lines
339 B
Go
Raw Normal View History

2022-05-01 08:39:22 +00:00
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
2022-05-01 18:33:55 +00:00
ChannelDone bool
2022-05-01 08:39:22 +00:00
IsChannel bool
2022-05-01 08:50:20 +00:00
IsError bool
2022-05-01 08:39:22 +00:00
Error string
Return any
}