chremoas_esi

package
v1.3.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 17, 2021 License: Apache-2.0 Imports: 6 Imported by: 4

Documentation

Overview

Package chremoas_esi is a generated protocol buffer package.

It is generated from these files:

alliance.proto
character.proto
common.proto
corporation.proto
search.proto

It has these top-level messages:

GetAlliancesRequest
GetAlliancesResponse
GetAllianceByIdRequest
GetAllianceByIdResponse
GetAllianceCorporationsByIdRequest
GetAllianceCorporationsByIdResponse
GetAllianceIconsByIdRequest
GetAllianceIconsByIdResponse
GetAllianceNamesByIdsRequest
GetAllianceNamesByIdsResponse
GetCharacterByIdRequest
GetCharacterByIdResponse
Alliance
Icons
AllianceNames
Character
Corporation
GetCorporationByIdRequest
GetCorporationByIdResponse
SearchRequest
SearchResponse

Package chremoas_esi is a generated protocol buffer package.

It is generated from these files:

alliance.proto
character.proto
common.proto
corporation.proto
search.proto

It has these top-level messages:

GetAlliancesRequest
GetAlliancesResponse
GetAllianceByIdRequest
GetAllianceByIdResponse
GetAllianceCorporationsByIdRequest
GetAllianceCorporationsByIdResponse
GetAllianceIconsByIdRequest
GetAllianceIconsByIdResponse
GetAllianceNamesByIdsRequest
GetAllianceNamesByIdsResponse
GetCharacterByIdRequest
GetCharacterByIdResponse
Alliance
Icons
AllianceNames
Character
Corporation
GetCorporationByIdRequest
GetCorporationByIdResponse
SearchRequest
SearchResponse

Index

Constants

This section is empty.

Variables

View Source
var EntityType_name = map[int32]string{
	0: "ALLIANCE",
	1: "CORPORATION",
	2: "CHARACTER",
}
View Source
var EntityType_value = map[string]int32{
	"ALLIANCE":    0,
	"CORPORATION": 1,
	"CHARACTER":   2,
}

Functions

func RegisterAllianceServiceHandler

func RegisterAllianceServiceHandler(s server.Server, hdlr AllianceServiceHandler, opts ...server.HandlerOption)

func RegisterCharacterServiceHandler

func RegisterCharacterServiceHandler(s server.Server, hdlr CharacterServiceHandler, opts ...server.HandlerOption)

func RegisterCorporationServiceHandler

func RegisterCorporationServiceHandler(s server.Server, hdlr CorporationServiceHandler, opts ...server.HandlerOption)

func RegisterSearchServiceHandler

func RegisterSearchServiceHandler(s server.Server, hdlr SearchServiceHandler, opts ...server.HandlerOption)

Types

type Alliance

type Alliance struct {
	Name         string `protobuf:"bytes,1,opt,name=Name" json:"Name,omitempty"`
	Ticker       string `protobuf:"bytes,2,opt,name=Ticker" json:"Ticker,omitempty"`
	ExecutorCorp int32  `protobuf:"varint,3,opt,name=ExecutorCorp" json:"ExecutorCorp,omitempty"`
	DateFounded  int64  `protobuf:"varint,4,opt,name=DateFounded" json:"DateFounded,omitempty"`
}

func (*Alliance) Descriptor

func (*Alliance) Descriptor() ([]byte, []int)

func (*Alliance) GetDateFounded

func (m *Alliance) GetDateFounded() int64

func (*Alliance) GetExecutorCorp

func (m *Alliance) GetExecutorCorp() int32

func (*Alliance) GetName

func (m *Alliance) GetName() string

func (*Alliance) GetTicker

func (m *Alliance) GetTicker() string

func (*Alliance) ProtoMessage

func (*Alliance) ProtoMessage()

func (*Alliance) Reset

func (m *Alliance) Reset()

func (*Alliance) String

func (m *Alliance) String() string

type AllianceNames

type AllianceNames struct {
	AllianceId   int32  `protobuf:"varint,1,opt,name=AllianceId" json:"AllianceId,omitempty"`
	AllianceName string `protobuf:"bytes,2,opt,name=AllianceName" json:"AllianceName,omitempty"`
}

func (*AllianceNames) Descriptor

func (*AllianceNames) Descriptor() ([]byte, []int)

func (*AllianceNames) GetAllianceId

func (m *AllianceNames) GetAllianceId() int32

func (*AllianceNames) GetAllianceName

func (m *AllianceNames) GetAllianceName() string

func (*AllianceNames) ProtoMessage

func (*AllianceNames) ProtoMessage()

func (*AllianceNames) Reset

func (m *AllianceNames) Reset()

func (*AllianceNames) String

func (m *AllianceNames) String() string

type Character

type Character struct {
	Name           string  `protobuf:"bytes,1,opt,name=Name" json:"Name,omitempty"`
	Description    string  `protobuf:"bytes,2,opt,name=Description" json:"Description,omitempty"`
	CorporationId  int32   `protobuf:"varint,3,opt,name=CorporationId" json:"CorporationId,omitempty"`
	AllianceId     int32   `protobuf:"varint,4,opt,name=AllianceId" json:"AllianceId,omitempty"`
	Birthday       int64   `protobuf:"varint,5,opt,name=Birthday" json:"Birthday,omitempty"`
	Gender         string  `protobuf:"bytes,6,opt,name=Gender" json:"Gender,omitempty"`
	RaceId         int32   `protobuf:"varint,7,opt,name=RaceId" json:"RaceId,omitempty"`
	BloodlineId    int32   `protobuf:"varint,8,opt,name=BloodlineId" json:"BloodlineId,omitempty"`
	AncestryId     int32   `protobuf:"varint,9,opt,name=AncestryId" json:"AncestryId,omitempty"`
	SecurityStatus float32 `protobuf:"fixed32,10,opt,name=SecurityStatus" json:"SecurityStatus,omitempty"`
}

func (*Character) Descriptor

func (*Character) Descriptor() ([]byte, []int)

func (*Character) GetAllianceId

func (m *Character) GetAllianceId() int32

func (*Character) GetAncestryId

func (m *Character) GetAncestryId() int32

func (*Character) GetBirthday

func (m *Character) GetBirthday() int64

func (*Character) GetBloodlineId

func (m *Character) GetBloodlineId() int32

func (*Character) GetCorporationId

func (m *Character) GetCorporationId() int32

func (*Character) GetDescription

func (m *Character) GetDescription() string

func (*Character) GetGender

func (m *Character) GetGender() string

func (*Character) GetName

func (m *Character) GetName() string

func (*Character) GetRaceId

func (m *Character) GetRaceId() int32

func (*Character) GetSecurityStatus

func (m *Character) GetSecurityStatus() float32

func (*Character) ProtoMessage

func (*Character) ProtoMessage()

func (*Character) Reset

func (m *Character) Reset()

func (*Character) String

func (m *Character) String() string

type CharacterService

type CharacterService interface {
	GetCharacterById(ctx context.Context, in *GetCharacterByIdRequest, opts ...client.CallOption) (*GetCharacterByIdResponse, error)
}

func NewCharacterService

func NewCharacterService(name string, c client.Client) CharacterService

type CharacterServiceHandler

type CharacterServiceHandler interface {
	GetCharacterById(context.Context, *GetCharacterByIdRequest, *GetCharacterByIdResponse) error
}

type Corporation

type Corporation struct {
	Name         string  `protobuf:"bytes,1,opt,name=Name" json:"Name,omitempty"`
	Ticker       string  `protobuf:"bytes,2,opt,name=Ticker" json:"Ticker,omitempty"`
	MemberCount  int32   `protobuf:"varint,3,opt,name=MemberCount" json:"MemberCount,omitempty"`
	CeoId        int32   `protobuf:"varint,4,opt,name=CeoId" json:"CeoId,omitempty"`
	AllianceId   int32   `protobuf:"varint,5,opt,name=AllianceId" json:"AllianceId,omitempty"`
	Description  string  `protobuf:"bytes,6,opt,name=Description" json:"Description,omitempty"`
	TaxRate      float32 `protobuf:"fixed32,7,opt,name=TaxRate" json:"TaxRate,omitempty"`
	CreationDate int64   `protobuf:"varint,8,opt,name=CreationDate" json:"CreationDate,omitempty"`
	CreatorId    int32   `protobuf:"varint,9,opt,name=CreatorId" json:"CreatorId,omitempty"`
	Url          string  `protobuf:"bytes,10,opt,name=Url" json:"Url,omitempty"`
	FactionId    int32   `protobuf:"varint,11,opt,name=FactionId" json:"FactionId,omitempty"`
}

func (*Corporation) Descriptor

func (*Corporation) Descriptor() ([]byte, []int)

func (*Corporation) GetAllianceId

func (m *Corporation) GetAllianceId() int32

func (*Corporation) GetCeoId

func (m *Corporation) GetCeoId() int32

func (*Corporation) GetCreationDate

func (m *Corporation) GetCreationDate() int64

func (*Corporation) GetCreatorId

func (m *Corporation) GetCreatorId() int32

func (*Corporation) GetDescription

func (m *Corporation) GetDescription() string

func (*Corporation) GetFactionId

func (m *Corporation) GetFactionId() int32

func (*Corporation) GetMemberCount

func (m *Corporation) GetMemberCount() int32

func (*Corporation) GetName

func (m *Corporation) GetName() string

func (*Corporation) GetTaxRate

func (m *Corporation) GetTaxRate() float32

func (*Corporation) GetTicker

func (m *Corporation) GetTicker() string

func (*Corporation) GetUrl

func (m *Corporation) GetUrl() string

func (*Corporation) ProtoMessage

func (*Corporation) ProtoMessage()

func (*Corporation) Reset

func (m *Corporation) Reset()

func (*Corporation) String

func (m *Corporation) String() string

type CorporationService

type CorporationService interface {
	GetCorporationById(ctx context.Context, in *GetCorporationByIdRequest, opts ...client.CallOption) (*GetCorporationByIdResponse, error)
}

func NewCorporationService

func NewCorporationService(name string, c client.Client) CorporationService

type CorporationServiceHandler

type CorporationServiceHandler interface {
	GetCorporationById(context.Context, *GetCorporationByIdRequest, *GetCorporationByIdResponse) error
}

type EntityType

type EntityType int32
const (
	EntityType_ALLIANCE    EntityType = 0
	EntityType_CORPORATION EntityType = 1
	EntityType_CHARACTER   EntityType = 2
)

func (EntityType) EnumDescriptor

func (EntityType) EnumDescriptor() ([]byte, []int)

func (EntityType) String

func (x EntityType) String() string

type GetAllianceByIdRequest

type GetAllianceByIdRequest struct {
	Id int32 `protobuf:"varint,1,opt,name=Id" json:"Id,omitempty"`
}

func (*GetAllianceByIdRequest) Descriptor

func (*GetAllianceByIdRequest) Descriptor() ([]byte, []int)

func (*GetAllianceByIdRequest) GetId

func (m *GetAllianceByIdRequest) GetId() int32

func (*GetAllianceByIdRequest) ProtoMessage

func (*GetAllianceByIdRequest) ProtoMessage()

func (*GetAllianceByIdRequest) Reset

func (m *GetAllianceByIdRequest) Reset()

func (*GetAllianceByIdRequest) String

func (m *GetAllianceByIdRequest) String() string

type GetAllianceByIdResponse

type GetAllianceByIdResponse struct {
	Alliance *Alliance `protobuf:"bytes,1,opt,name=Alliance" json:"Alliance,omitempty"`
}

func (*GetAllianceByIdResponse) Descriptor

func (*GetAllianceByIdResponse) Descriptor() ([]byte, []int)

func (*GetAllianceByIdResponse) GetAlliance

func (m *GetAllianceByIdResponse) GetAlliance() *Alliance

func (*GetAllianceByIdResponse) ProtoMessage

func (*GetAllianceByIdResponse) ProtoMessage()

func (*GetAllianceByIdResponse) Reset

func (m *GetAllianceByIdResponse) Reset()

func (*GetAllianceByIdResponse) String

func (m *GetAllianceByIdResponse) String() string

type GetAllianceCorporationsByIdRequest

type GetAllianceCorporationsByIdRequest struct {
	Id int32 `protobuf:"varint,1,opt,name=Id" json:"Id,omitempty"`
}

GetAllianceCorporationsById

func (*GetAllianceCorporationsByIdRequest) Descriptor

func (*GetAllianceCorporationsByIdRequest) Descriptor() ([]byte, []int)

func (*GetAllianceCorporationsByIdRequest) GetId

func (*GetAllianceCorporationsByIdRequest) ProtoMessage

func (*GetAllianceCorporationsByIdRequest) ProtoMessage()

func (*GetAllianceCorporationsByIdRequest) Reset

func (*GetAllianceCorporationsByIdRequest) String

type GetAllianceCorporationsByIdResponse

type GetAllianceCorporationsByIdResponse struct {
	Ids []int32 `protobuf:"varint,1,rep,packed,name=Ids" json:"Ids,omitempty"`
}

func (*GetAllianceCorporationsByIdResponse) Descriptor

func (*GetAllianceCorporationsByIdResponse) Descriptor() ([]byte, []int)

func (*GetAllianceCorporationsByIdResponse) GetIds

func (*GetAllianceCorporationsByIdResponse) ProtoMessage

func (*GetAllianceCorporationsByIdResponse) ProtoMessage()

func (*GetAllianceCorporationsByIdResponse) Reset

func (*GetAllianceCorporationsByIdResponse) String

type GetAllianceIconsByIdRequest

type GetAllianceIconsByIdRequest struct {
	Id int32 `protobuf:"varint,1,opt,name=Id" json:"Id,omitempty"`
}

func (*GetAllianceIconsByIdRequest) Descriptor

func (*GetAllianceIconsByIdRequest) Descriptor() ([]byte, []int)

func (*GetAllianceIconsByIdRequest) GetId

func (*GetAllianceIconsByIdRequest) ProtoMessage

func (*GetAllianceIconsByIdRequest) ProtoMessage()

func (*GetAllianceIconsByIdRequest) Reset

func (m *GetAllianceIconsByIdRequest) Reset()

func (*GetAllianceIconsByIdRequest) String

func (m *GetAllianceIconsByIdRequest) String() string

type GetAllianceIconsByIdResponse

type GetAllianceIconsByIdResponse struct {
	Icons *Icons `protobuf:"bytes,1,opt,name=Icons" json:"Icons,omitempty"`
}

func (*GetAllianceIconsByIdResponse) Descriptor

func (*GetAllianceIconsByIdResponse) Descriptor() ([]byte, []int)

func (*GetAllianceIconsByIdResponse) GetIcons

func (m *GetAllianceIconsByIdResponse) GetIcons() *Icons

func (*GetAllianceIconsByIdResponse) ProtoMessage

func (*GetAllianceIconsByIdResponse) ProtoMessage()

func (*GetAllianceIconsByIdResponse) Reset

func (m *GetAllianceIconsByIdResponse) Reset()

func (*GetAllianceIconsByIdResponse) String

type GetAllianceNamesByIdsRequest

type GetAllianceNamesByIdsRequest struct {
	Ids []int32 `protobuf:"varint,1,rep,packed,name=Ids" json:"Ids,omitempty"`
}

func (*GetAllianceNamesByIdsRequest) Descriptor

func (*GetAllianceNamesByIdsRequest) Descriptor() ([]byte, []int)

func (*GetAllianceNamesByIdsRequest) GetIds

func (m *GetAllianceNamesByIdsRequest) GetIds() []int32

func (*GetAllianceNamesByIdsRequest) ProtoMessage

func (*GetAllianceNamesByIdsRequest) ProtoMessage()

func (*GetAllianceNamesByIdsRequest) Reset

func (m *GetAllianceNamesByIdsRequest) Reset()

func (*GetAllianceNamesByIdsRequest) String

type GetAllianceNamesByIdsResponse

type GetAllianceNamesByIdsResponse struct {
	Names []*AllianceNames `protobuf:"bytes,1,rep,name=Names" json:"Names,omitempty"`
}

func (*GetAllianceNamesByIdsResponse) Descriptor

func (*GetAllianceNamesByIdsResponse) Descriptor() ([]byte, []int)

func (*GetAllianceNamesByIdsResponse) GetNames

func (*GetAllianceNamesByIdsResponse) ProtoMessage

func (*GetAllianceNamesByIdsResponse) ProtoMessage()

func (*GetAllianceNamesByIdsResponse) Reset

func (m *GetAllianceNamesByIdsResponse) Reset()

func (*GetAllianceNamesByIdsResponse) String

type GetAlliancesRequest

type GetAlliancesRequest struct {
}

func (*GetAlliancesRequest) Descriptor

func (*GetAlliancesRequest) Descriptor() ([]byte, []int)

func (*GetAlliancesRequest) ProtoMessage

func (*GetAlliancesRequest) ProtoMessage()

func (*GetAlliancesRequest) Reset

func (m *GetAlliancesRequest) Reset()

func (*GetAlliancesRequest) String

func (m *GetAlliancesRequest) String() string

type GetAlliancesResponse

type GetAlliancesResponse struct {
	Ids []int32 `protobuf:"varint,1,rep,packed,name=Ids" json:"Ids,omitempty"`
}

func (*GetAlliancesResponse) Descriptor

func (*GetAlliancesResponse) Descriptor() ([]byte, []int)

func (*GetAlliancesResponse) GetIds

func (m *GetAlliancesResponse) GetIds() []int32

func (*GetAlliancesResponse) ProtoMessage

func (*GetAlliancesResponse) ProtoMessage()

func (*GetAlliancesResponse) Reset

func (m *GetAlliancesResponse) Reset()

func (*GetAlliancesResponse) String

func (m *GetAlliancesResponse) String() string

type GetCharacterByIdRequest

type GetCharacterByIdRequest struct {
	Id int32 `protobuf:"varint,1,opt,name=Id" json:"Id,omitempty"`
}

GetCharacterById

func (*GetCharacterByIdRequest) Descriptor

func (*GetCharacterByIdRequest) Descriptor() ([]byte, []int)

func (*GetCharacterByIdRequest) GetId

func (m *GetCharacterByIdRequest) GetId() int32

func (*GetCharacterByIdRequest) ProtoMessage

func (*GetCharacterByIdRequest) ProtoMessage()

func (*GetCharacterByIdRequest) Reset

func (m *GetCharacterByIdRequest) Reset()

func (*GetCharacterByIdRequest) String

func (m *GetCharacterByIdRequest) String() string

type GetCharacterByIdResponse

type GetCharacterByIdResponse struct {
	Character *Character `protobuf:"bytes,1,opt,name=Character" json:"Character,omitempty"`
}

func (*GetCharacterByIdResponse) Descriptor

func (*GetCharacterByIdResponse) Descriptor() ([]byte, []int)

func (*GetCharacterByIdResponse) GetCharacter

func (m *GetCharacterByIdResponse) GetCharacter() *Character

func (*GetCharacterByIdResponse) ProtoMessage

func (*GetCharacterByIdResponse) ProtoMessage()

func (*GetCharacterByIdResponse) Reset

func (m *GetCharacterByIdResponse) Reset()

func (*GetCharacterByIdResponse) String

func (m *GetCharacterByIdResponse) String() string

type GetCorporationByIdRequest

type GetCorporationByIdRequest struct {
	Id int32 `protobuf:"varint,1,opt,name=Id" json:"Id,omitempty"`
}

func (*GetCorporationByIdRequest) Descriptor

func (*GetCorporationByIdRequest) Descriptor() ([]byte, []int)

func (*GetCorporationByIdRequest) GetId

func (m *GetCorporationByIdRequest) GetId() int32

func (*GetCorporationByIdRequest) ProtoMessage

func (*GetCorporationByIdRequest) ProtoMessage()

func (*GetCorporationByIdRequest) Reset

func (m *GetCorporationByIdRequest) Reset()

func (*GetCorporationByIdRequest) String

func (m *GetCorporationByIdRequest) String() string

type GetCorporationByIdResponse

type GetCorporationByIdResponse struct {
	Corporation *Corporation `protobuf:"bytes,1,opt,name=Corporation" json:"Corporation,omitempty"`
}

func (*GetCorporationByIdResponse) Descriptor

func (*GetCorporationByIdResponse) Descriptor() ([]byte, []int)

func (*GetCorporationByIdResponse) GetCorporation

func (m *GetCorporationByIdResponse) GetCorporation() *Corporation

func (*GetCorporationByIdResponse) ProtoMessage

func (*GetCorporationByIdResponse) ProtoMessage()

func (*GetCorporationByIdResponse) Reset

func (m *GetCorporationByIdResponse) Reset()

func (*GetCorporationByIdResponse) String

func (m *GetCorporationByIdResponse) String() string

type Icons

type Icons struct {
	PSixtyFour      string `protobuf:"bytes,1,opt,name=PSixtyFour" json:"PSixtyFour,omitempty"`
	POneTwentyEight string `protobuf:"bytes,2,opt,name=POneTwentyEight" json:"POneTwentyEight,omitempty"`
}

func (*Icons) Descriptor

func (*Icons) Descriptor() ([]byte, []int)

func (*Icons) GetPOneTwentyEight

func (m *Icons) GetPOneTwentyEight() string

func (*Icons) GetPSixtyFour

func (m *Icons) GetPSixtyFour() string

func (*Icons) ProtoMessage

func (*Icons) ProtoMessage()

func (*Icons) Reset

func (m *Icons) Reset()

func (*Icons) String

func (m *Icons) String() string

type SearchRequest

type SearchRequest struct {
	SearchString string `protobuf:"bytes,1,opt,name=SearchString" json:"SearchString,omitempty"`
}

func (*SearchRequest) Descriptor

func (*SearchRequest) Descriptor() ([]byte, []int)

func (*SearchRequest) GetSearchString

func (m *SearchRequest) GetSearchString() string

func (*SearchRequest) ProtoMessage

func (*SearchRequest) ProtoMessage()

func (*SearchRequest) Reset

func (m *SearchRequest) Reset()

func (*SearchRequest) String

func (m *SearchRequest) String() string

type SearchResponse

type SearchResponse struct {
	Agent         []int32 `protobuf:"varint,1,rep,packed,name=Agent" json:"Agent,omitempty"`
	Alliance      []int32 `protobuf:"varint,2,rep,packed,name=Alliance" json:"Alliance,omitempty"`
	Character     []int32 `protobuf:"varint,3,rep,packed,name=Character" json:"Character,omitempty"`
	Constellation []int32 `protobuf:"varint,4,rep,packed,name=Constellation" json:"Constellation,omitempty"`
	Corporation   []int32 `protobuf:"varint,5,rep,packed,name=Corporation" json:"Corporation,omitempty"`
	Faction       []int32 `protobuf:"varint,6,rep,packed,name=Faction" json:"Faction,omitempty"`
	Inventorytype []int32 `protobuf:"varint,7,rep,packed,name=Inventorytype" json:"Inventorytype,omitempty"`
	Region        []int32 `protobuf:"varint,8,rep,packed,name=Region" json:"Region,omitempty"`
	Solarsystem   []int32 `protobuf:"varint,9,rep,packed,name=Solarsystem" json:"Solarsystem,omitempty"`
	Station       []int32 `protobuf:"varint,10,rep,packed,name=Station" json:"Station,omitempty"`
	Wormhole      []int32 `protobuf:"varint,11,rep,packed,name=Wormhole" json:"Wormhole,omitempty"`
}

func (*SearchResponse) Descriptor

func (*SearchResponse) Descriptor() ([]byte, []int)

func (*SearchResponse) GetAgent

func (m *SearchResponse) GetAgent() []int32

func (*SearchResponse) GetAlliance

func (m *SearchResponse) GetAlliance() []int32

func (*SearchResponse) GetCharacter

func (m *SearchResponse) GetCharacter() []int32

func (*SearchResponse) GetConstellation

func (m *SearchResponse) GetConstellation() []int32

func (*SearchResponse) GetCorporation

func (m *SearchResponse) GetCorporation() []int32

func (*SearchResponse) GetFaction

func (m *SearchResponse) GetFaction() []int32

func (*SearchResponse) GetInventorytype

func (m *SearchResponse) GetInventorytype() []int32

func (*SearchResponse) GetRegion

func (m *SearchResponse) GetRegion() []int32

func (*SearchResponse) GetSolarsystem

func (m *SearchResponse) GetSolarsystem() []int32

func (*SearchResponse) GetStation

func (m *SearchResponse) GetStation() []int32

func (*SearchResponse) GetWormhole

func (m *SearchResponse) GetWormhole() []int32

func (*SearchResponse) ProtoMessage

func (*SearchResponse) ProtoMessage()

func (*SearchResponse) Reset

func (m *SearchResponse) Reset()

func (*SearchResponse) String

func (m *SearchResponse) String() string

type SearchService

type SearchService interface {
	Search(ctx context.Context, in *SearchRequest, opts ...client.CallOption) (*SearchResponse, error)
}

func NewSearchService

func NewSearchService(name string, c client.Client) SearchService

type SearchServiceHandler

type SearchServiceHandler interface {
	Search(context.Context, *SearchRequest, *SearchResponse) error
}

Directories

Path Synopsis
// Automatically generated by pegomock.
// Automatically generated by pegomock.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL