Note.liverpc.go 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Code generated by protoc-gen-liverpc v0.1, DO NOT EDIT.
  2. // source: v1/Note.proto
  3. package v1
  4. import context "context"
  5. import proto "github.com/golang/protobuf/proto"
  6. import "go-common/library/net/rpc/liverpc"
  7. var _ proto.Message // generate to suppress unused imports
  8. // ==============
  9. // Note Interface
  10. // ==============
  11. type Note interface {
  12. // * 大航海续费提醒
  13. //
  14. Get(context.Context, *NoteGetReq) (*NoteGetResp, error)
  15. }
  16. // ====================
  17. // Note Live Rpc Client
  18. // ====================
  19. type noteRpcClient struct {
  20. client *liverpc.Client
  21. }
  22. // NewNoteRpcClient creates a Rpc client that implements the Note interface.
  23. // It communicates using Rpc and can be configured with a custom HTTPClient.
  24. func NewNoteRpcClient(client *liverpc.Client) Note {
  25. return &noteRpcClient{
  26. client: client,
  27. }
  28. }
  29. func (c *noteRpcClient) Get(ctx context.Context, in *NoteGetReq) (*NoteGetResp, error) {
  30. out := new(NoteGetResp)
  31. err := doRpcRequest(ctx, c.client, 1, "Note.get", in, out)
  32. if err != nil {
  33. return nil, err
  34. }
  35. return out, nil
  36. }