Documentation
¶
Index ¶
- Variables
- type Bootstrap
- type Data
- func (*Data) Descriptor() ([]byte, []int)deprecated
- func (x *Data) GetCartService() *Data_CartService
- func (x *Data) GetCatalogService() *Data_CatalogService
- func (x *Data) GetUserService() *Data_UserService
- func (*Data) ProtoMessage()
- func (x *Data) ProtoReflect() protoreflect.Message
- func (x *Data) Reset()
- func (x *Data) String() string
- type Data_CartService
- type Data_CatalogService
- func (*Data_CatalogService) Descriptor() ([]byte, []int)deprecated
- func (x *Data_CatalogService) GetUri() string
- func (*Data_CatalogService) ProtoMessage()
- func (x *Data_CatalogService) ProtoReflect() protoreflect.Message
- func (x *Data_CatalogService) Reset()
- func (x *Data_CatalogService) String() string
- type Data_UserService
- type Server
- type Server_GRPC
- func (*Server_GRPC) Descriptor() ([]byte, []int)deprecated
- func (x *Server_GRPC) GetAddr() string
- func (x *Server_GRPC) GetNetwork() string
- func (x *Server_GRPC) GetTimeout() *durationpb.Duration
- func (*Server_GRPC) ProtoMessage()
- func (x *Server_GRPC) ProtoReflect() protoreflect.Message
- func (x *Server_GRPC) Reset()
- func (x *Server_GRPC) String() string
- type Server_HTTP
- func (*Server_HTTP) Descriptor() ([]byte, []int)deprecated
- func (x *Server_HTTP) GetAddr() string
- func (x *Server_HTTP) GetNetwork() string
- func (x *Server_HTTP) GetTimeout() *durationpb.Duration
- func (*Server_HTTP) ProtoMessage()
- func (x *Server_HTTP) ProtoReflect() protoreflect.Message
- func (x *Server_HTTP) Reset()
- func (x *Server_HTTP) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var File_conf_conf_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type Bootstrap ¶
type Bootstrap struct { Server *Server `protobuf:"bytes,1,opt,name=server,proto3" json:"server,omitempty"` Data *Data `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` // contains filtered or unexported fields }
func (*Bootstrap) Descriptor
deprecated
func (*Bootstrap) ProtoMessage ¶
func (*Bootstrap) ProtoMessage()
func (*Bootstrap) ProtoReflect ¶
func (x *Bootstrap) ProtoReflect() protoreflect.Message
type Data ¶
type Data struct { CartService *Data_CartService `protobuf:"bytes,1,opt,name=cart_service,json=cartService,proto3" json:"cart_service,omitempty"` CatalogService *Data_CatalogService `protobuf:"bytes,2,opt,name=catalog_service,json=catalogService,proto3" json:"catalog_service,omitempty"` UserService *Data_UserService `protobuf:"bytes,3,opt,name=user_service,json=userService,proto3" json:"user_service,omitempty"` // contains filtered or unexported fields }
func (*Data) Descriptor
deprecated
func (*Data) GetCartService ¶
func (x *Data) GetCartService() *Data_CartService
func (*Data) GetCatalogService ¶
func (x *Data) GetCatalogService() *Data_CatalogService
func (*Data) GetUserService ¶
func (x *Data) GetUserService() *Data_UserService
func (*Data) ProtoMessage ¶
func (*Data) ProtoMessage()
func (*Data) ProtoReflect ¶
func (x *Data) ProtoReflect() protoreflect.Message
type Data_CartService ¶
type Data_CartService struct { Uri string `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"` // contains filtered or unexported fields }
func (*Data_CartService) Descriptor
deprecated
func (*Data_CartService) Descriptor() ([]byte, []int)
Deprecated: Use Data_CartService.ProtoReflect.Descriptor instead.
func (*Data_CartService) GetUri ¶
func (x *Data_CartService) GetUri() string
func (*Data_CartService) ProtoMessage ¶
func (*Data_CartService) ProtoMessage()
func (*Data_CartService) ProtoReflect ¶
func (x *Data_CartService) ProtoReflect() protoreflect.Message
func (*Data_CartService) Reset ¶
func (x *Data_CartService) Reset()
func (*Data_CartService) String ¶
func (x *Data_CartService) String() string
type Data_CatalogService ¶
type Data_CatalogService struct { Uri string `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"` // contains filtered or unexported fields }
func (*Data_CatalogService) Descriptor
deprecated
func (*Data_CatalogService) Descriptor() ([]byte, []int)
Deprecated: Use Data_CatalogService.ProtoReflect.Descriptor instead.
func (*Data_CatalogService) GetUri ¶
func (x *Data_CatalogService) GetUri() string
func (*Data_CatalogService) ProtoMessage ¶
func (*Data_CatalogService) ProtoMessage()
func (*Data_CatalogService) ProtoReflect ¶
func (x *Data_CatalogService) ProtoReflect() protoreflect.Message
func (*Data_CatalogService) Reset ¶
func (x *Data_CatalogService) Reset()
func (*Data_CatalogService) String ¶
func (x *Data_CatalogService) String() string
type Data_UserService ¶
type Data_UserService struct { Uri string `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"` // contains filtered or unexported fields }
func (*Data_UserService) Descriptor
deprecated
func (*Data_UserService) Descriptor() ([]byte, []int)
Deprecated: Use Data_UserService.ProtoReflect.Descriptor instead.
func (*Data_UserService) GetUri ¶
func (x *Data_UserService) GetUri() string
func (*Data_UserService) ProtoMessage ¶
func (*Data_UserService) ProtoMessage()
func (*Data_UserService) ProtoReflect ¶
func (x *Data_UserService) ProtoReflect() protoreflect.Message
func (*Data_UserService) Reset ¶
func (x *Data_UserService) Reset()
func (*Data_UserService) String ¶
func (x *Data_UserService) String() string
type Server ¶
type Server struct { Http *Server_HTTP `protobuf:"bytes,1,opt,name=http,proto3" json:"http,omitempty"` Grpc *Server_GRPC `protobuf:"bytes,2,opt,name=grpc,proto3" json:"grpc,omitempty"` // contains filtered or unexported fields }
func (*Server) Descriptor
deprecated
func (*Server) GetGrpc ¶
func (x *Server) GetGrpc() *Server_GRPC
func (*Server) GetHttp ¶
func (x *Server) GetHttp() *Server_HTTP
func (*Server) ProtoMessage ¶
func (*Server) ProtoMessage()
func (*Server) ProtoReflect ¶
func (x *Server) ProtoReflect() protoreflect.Message
type Server_GRPC ¶
type Server_GRPC struct { Network string `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"` Addr string `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"` Timeout *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout,omitempty"` // contains filtered or unexported fields }
func (*Server_GRPC) Descriptor
deprecated
func (*Server_GRPC) Descriptor() ([]byte, []int)
Deprecated: Use Server_GRPC.ProtoReflect.Descriptor instead.
func (*Server_GRPC) GetAddr ¶
func (x *Server_GRPC) GetAddr() string
func (*Server_GRPC) GetNetwork ¶
func (x *Server_GRPC) GetNetwork() string
func (*Server_GRPC) GetTimeout ¶
func (x *Server_GRPC) GetTimeout() *durationpb.Duration
func (*Server_GRPC) ProtoMessage ¶
func (*Server_GRPC) ProtoMessage()
func (*Server_GRPC) ProtoReflect ¶
func (x *Server_GRPC) ProtoReflect() protoreflect.Message
func (*Server_GRPC) Reset ¶
func (x *Server_GRPC) Reset()
func (*Server_GRPC) String ¶
func (x *Server_GRPC) String() string
type Server_HTTP ¶
type Server_HTTP struct { Network string `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"` Addr string `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"` Timeout *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout,omitempty"` // contains filtered or unexported fields }
func (*Server_HTTP) Descriptor
deprecated
func (*Server_HTTP) Descriptor() ([]byte, []int)
Deprecated: Use Server_HTTP.ProtoReflect.Descriptor instead.
func (*Server_HTTP) GetAddr ¶
func (x *Server_HTTP) GetAddr() string
func (*Server_HTTP) GetNetwork ¶
func (x *Server_HTTP) GetNetwork() string
func (*Server_HTTP) GetTimeout ¶
func (x *Server_HTTP) GetTimeout() *durationpb.Duration
func (*Server_HTTP) ProtoMessage ¶
func (*Server_HTTP) ProtoMessage()
func (*Server_HTTP) ProtoReflect ¶
func (x *Server_HTTP) ProtoReflect() protoreflect.Message
func (*Server_HTTP) Reset ¶
func (x *Server_HTTP) Reset()
func (*Server_HTTP) String ¶
func (x *Server_HTTP) String() string
Click to show internal directories.
Click to hide internal directories.