Files
services/holidays/proto/holidays.pb.micro.go
2021-09-21 18:51:19 +01:00

115 lines
3.3 KiB
Go

// Code generated by protoc-gen-micro. DO NOT EDIT.
// source: proto/holidays.proto
package holidays
import (
fmt "fmt"
proto "github.com/golang/protobuf/proto"
math "math"
)
import (
context "context"
api "github.com/micro/micro/v3/service/api"
client "github.com/micro/micro/v3/service/client"
server "github.com/micro/micro/v3/service/server"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// Reference imports to suppress errors if they are not otherwise used.
var _ api.Endpoint
var _ context.Context
var _ client.Option
var _ server.Option
// Api Endpoints for Holidays service
func NewHolidaysEndpoints() []*api.Endpoint {
return []*api.Endpoint{}
}
// Client API for Holidays service
type HolidaysService interface {
// Get the list of countries that are supported by this API
Countries(ctx context.Context, in *CountriesRequest, opts ...client.CallOption) (*CountriesResponse, error)
// List the holiday dates for a given country and year
List(ctx context.Context, in *ListRequest, opts ...client.CallOption) (*ListResponse, error)
}
type holidaysService struct {
c client.Client
name string
}
func NewHolidaysService(name string, c client.Client) HolidaysService {
return &holidaysService{
c: c,
name: name,
}
}
func (c *holidaysService) Countries(ctx context.Context, in *CountriesRequest, opts ...client.CallOption) (*CountriesResponse, error) {
req := c.c.NewRequest(c.name, "Holidays.Countries", in)
out := new(CountriesResponse)
err := c.c.Call(ctx, req, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *holidaysService) List(ctx context.Context, in *ListRequest, opts ...client.CallOption) (*ListResponse, error) {
req := c.c.NewRequest(c.name, "Holidays.List", in)
out := new(ListResponse)
err := c.c.Call(ctx, req, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for Holidays service
type HolidaysHandler interface {
// Get the list of countries that are supported by this API
Countries(context.Context, *CountriesRequest, *CountriesResponse) error
// List the holiday dates for a given country and year
List(context.Context, *ListRequest, *ListResponse) error
}
func RegisterHolidaysHandler(s server.Server, hdlr HolidaysHandler, opts ...server.HandlerOption) error {
type holidays interface {
Countries(ctx context.Context, in *CountriesRequest, out *CountriesResponse) error
List(ctx context.Context, in *ListRequest, out *ListResponse) error
}
type Holidays struct {
holidays
}
h := &holidaysHandler{hdlr}
return s.Handle(s.NewHandler(&Holidays{h}, opts...))
}
type holidaysHandler struct {
HolidaysHandler
}
func (h *holidaysHandler) Countries(ctx context.Context, in *CountriesRequest, out *CountriesResponse) error {
return h.HolidaysHandler.Countries(ctx, in, out)
}
func (h *holidaysHandler) List(ctx context.Context, in *ListRequest, out *ListResponse) error {
return h.HolidaysHandler.List(ctx, in, out)
}