kato

package module
v0.0.0-...-1bd3d81 Latest Latest
Warning

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

Go to latest
Published: May 29, 2020 License: Apache-2.0 Imports: 9 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	AccessType_name = map[int32]string{
		0: "READ",
		1: "MODIFY",
		2: "DELETE",
		3: "ADMIN",
	}
	AccessType_value = map[string]int32{
		"READ":   0,
		"MODIFY": 1,
		"DELETE": 2,
		"ADMIN":  3,
	}
)

Enum value maps for AccessType.

View Source
var (
	Identifier_IdentifierType_name = map[int32]string{
		0: "MODEL",
		1: "PROJECT",
		2: "USER",
		3: "TEAM",
		4: "ORGANIZATION",
		5: "GLOBAL",
	}
	Identifier_IdentifierType_value = map[string]int32{
		"MODEL":        0,
		"PROJECT":      1,
		"USER":         2,
		"TEAM":         3,
		"ORGANIZATION": 4,
		"GLOBAL":       5,
	}
)

Enum value maps for Identifier_IdentifierType.

View Source
var (
	Model_ModelType_name = map[int32]string{
		0: "ONNX",
		2: "TENSORFLOW",
		3: "TORCH",
		4: "H2O",
		5: "COREML",
		6: "KERAS",
		7: "SKLEARN",
	}
	Model_ModelType_value = map[string]int32{
		"ONNX":       0,
		"TENSORFLOW": 2,
		"TORCH":      3,
		"H2O":        4,
		"COREML":     5,
		"KERAS":      6,
		"SKLEARN":    7,
	}
)

Enum value maps for Model_ModelType.

View Source
var File_api_kato_proto protoreflect.FileDescriptor

Functions

func RegisterKatoServer

func RegisterKatoServer(s *grpc.Server, srv KatoServer)

Types

type AccessType

type AccessType int32
const (
	AccessType_READ   AccessType = 0
	AccessType_MODIFY AccessType = 1
	AccessType_DELETE AccessType = 2
	AccessType_ADMIN  AccessType = 3
)

func (AccessType) Descriptor

func (AccessType) Descriptor() protoreflect.EnumDescriptor

func (AccessType) Enum

func (x AccessType) Enum() *AccessType

func (AccessType) EnumDescriptor deprecated

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

Deprecated: Use AccessType.Descriptor instead.

func (AccessType) Number

func (x AccessType) Number() protoreflect.EnumNumber

func (AccessType) String

func (x AccessType) String() string

func (AccessType) Type

type Identifier

type Identifier struct {
	Query string                    `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	Id    string                    `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Type  Identifier_IdentifierType `protobuf:"varint,3,opt,name=type,proto3,enum=Identifier_IdentifierType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*Identifier) Descriptor deprecated

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

Deprecated: Use Identifier.ProtoReflect.Descriptor instead.

func (*Identifier) GetId

func (x *Identifier) GetId() string

func (*Identifier) GetQuery

func (x *Identifier) GetQuery() string

func (*Identifier) GetType

func (*Identifier) ProtoMessage

func (*Identifier) ProtoMessage()

func (*Identifier) ProtoReflect

func (x *Identifier) ProtoReflect() protoreflect.Message

func (*Identifier) Reset

func (x *Identifier) Reset()

func (*Identifier) String

func (x *Identifier) String() string

type Identifier_IdentifierType

type Identifier_IdentifierType int32
const (
	Identifier_MODEL        Identifier_IdentifierType = 0
	Identifier_PROJECT      Identifier_IdentifierType = 1
	Identifier_USER         Identifier_IdentifierType = 2
	Identifier_TEAM         Identifier_IdentifierType = 3
	Identifier_ORGANIZATION Identifier_IdentifierType = 4
	Identifier_GLOBAL       Identifier_IdentifierType = 5
)

func (Identifier_IdentifierType) Descriptor

func (Identifier_IdentifierType) Enum

func (Identifier_IdentifierType) EnumDescriptor deprecated

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

Deprecated: Use Identifier_IdentifierType.Descriptor instead.

func (Identifier_IdentifierType) Number

func (Identifier_IdentifierType) String

func (x Identifier_IdentifierType) String() string

func (Identifier_IdentifierType) Type

type KatoClient

type KatoClient interface {
	ListModels(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (Kato_ListModelsClient, error)
	GetModel(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (*Model, error)
	PutModel(ctx context.Context, in *Model, opts ...grpc.CallOption) (*Model, error)
	DeleteModel(ctx context.Context, in *Model, opts ...grpc.CallOption) (*Model, error)
	ListProjects(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (Kato_ListProjectsClient, error)
	GetProject(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (*Project, error)
	PutProject(ctx context.Context, in *Project, opts ...grpc.CallOption) (*Project, error)
	DeleteProject(ctx context.Context, in *Project, opts ...grpc.CallOption) (*Project, error)
	ListUser(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (Kato_ListUserClient, error)
	GetUser(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (*User, error)
	PutUser(ctx context.Context, in *User, opts ...grpc.CallOption) (*User, error)
	DeleteUser(ctx context.Context, in *User, opts ...grpc.CallOption) (*User, error)
	ListTeam(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (Kato_ListTeamClient, error)
	GetTeam(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (*Team, error)
	PutTeam(ctx context.Context, in *Team, opts ...grpc.CallOption) (*Team, error)
	DeleteTeam(ctx context.Context, in *Team, opts ...grpc.CallOption) (*Team, error)
	ListOrganizations(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (Kato_ListOrganizationsClient, error)
	GetOrganization(ctx context.Context, in *Identifier, opts ...grpc.CallOption) (*Organization, error)
	PutOrganization(ctx context.Context, in *Organization, opts ...grpc.CallOption) (*Organization, error)
	DeleteOrganization(ctx context.Context, in *Organization, opts ...grpc.CallOption) (*Organization, error)
}

KatoClient is the client API for Kato service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewKatoClient

func NewKatoClient(cc grpc.ClientConnInterface) KatoClient

type KatoServer

type KatoServer interface {
	ListModels(*Identifier, Kato_ListModelsServer) error
	GetModel(context.Context, *Identifier) (*Model, error)
	PutModel(context.Context, *Model) (*Model, error)
	DeleteModel(context.Context, *Model) (*Model, error)
	ListProjects(*Identifier, Kato_ListProjectsServer) error
	GetProject(context.Context, *Identifier) (*Project, error)
	PutProject(context.Context, *Project) (*Project, error)
	DeleteProject(context.Context, *Project) (*Project, error)
	ListUser(*Identifier, Kato_ListUserServer) error
	GetUser(context.Context, *Identifier) (*User, error)
	PutUser(context.Context, *User) (*User, error)
	DeleteUser(context.Context, *User) (*User, error)
	ListTeam(*Identifier, Kato_ListTeamServer) error
	GetTeam(context.Context, *Identifier) (*Team, error)
	PutTeam(context.Context, *Team) (*Team, error)
	DeleteTeam(context.Context, *Team) (*Team, error)
	ListOrganizations(*Identifier, Kato_ListOrganizationsServer) error
	GetOrganization(context.Context, *Identifier) (*Organization, error)
	PutOrganization(context.Context, *Organization) (*Organization, error)
	DeleteOrganization(context.Context, *Organization) (*Organization, error)
}

KatoServer is the server API for Kato service.

type Kato_ListModelsClient

type Kato_ListModelsClient interface {
	Recv() (*ModelList, error)
	grpc.ClientStream
}

type Kato_ListModelsServer

type Kato_ListModelsServer interface {
	Send(*ModelList) error
	grpc.ServerStream
}

type Kato_ListOrganizationsClient

type Kato_ListOrganizationsClient interface {
	Recv() (*OrganizationList, error)
	grpc.ClientStream
}

type Kato_ListOrganizationsServer

type Kato_ListOrganizationsServer interface {
	Send(*OrganizationList) error
	grpc.ServerStream
}

type Kato_ListProjectsClient

type Kato_ListProjectsClient interface {
	Recv() (*ProjectList, error)
	grpc.ClientStream
}

type Kato_ListProjectsServer

type Kato_ListProjectsServer interface {
	Send(*ProjectList) error
	grpc.ServerStream
}

type Kato_ListTeamClient

type Kato_ListTeamClient interface {
	Recv() (*TeamList, error)
	grpc.ClientStream
}

type Kato_ListTeamServer

type Kato_ListTeamServer interface {
	Send(*TeamList) error
	grpc.ServerStream
}

type Kato_ListUserClient

type Kato_ListUserClient interface {
	Recv() (*UserList, error)
	grpc.ClientStream
}

type Kato_ListUserServer

type Kato_ListUserServer interface {
	Send(*UserList) error
	grpc.ServerStream
}

type Member

type Member struct {
	Id     string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Rights []AccessType `protobuf:"varint,2,rep,packed,name=rights,proto3,enum=AccessType" json:"rights,omitempty"`
	// contains filtered or unexported fields
}

func (*Member) Descriptor deprecated

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

Deprecated: Use Member.ProtoReflect.Descriptor instead.

func (*Member) GetId

func (x *Member) GetId() string

func (*Member) GetRights

func (x *Member) GetRights() []AccessType

func (*Member) ProtoMessage

func (*Member) ProtoMessage()

func (*Member) ProtoReflect

func (x *Member) ProtoReflect() protoreflect.Message

func (*Member) Reset

func (x *Member) Reset()

func (*Member) String

func (x *Member) String() string

type Model

type Model struct {
	Id          string          `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string          `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Source      string          `protobuf:"bytes,3,opt,name=source,proto3" json:"source,omitempty"`
	Projectid   string          `protobuf:"bytes,4,opt,name=projectid,proto3" json:"projectid,omitempty"`
	License     string          `protobuf:"bytes,5,opt,name=license,proto3" json:"license,omitempty"`
	Prior       string          `protobuf:"bytes,6,opt,name=prior,proto3" json:"prior,omitempty"`
	LastUpdated uint64          `protobuf:"varint,7,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	Type        Model_ModelType `protobuf:"varint,8,opt,name=type,proto3,enum=Model_ModelType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*Model) Descriptor deprecated

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

Deprecated: Use Model.ProtoReflect.Descriptor instead.

func (*Model) GetId

func (x *Model) GetId() string

func (*Model) GetLastUpdated

func (x *Model) GetLastUpdated() uint64

func (*Model) GetLicense

func (x *Model) GetLicense() string

func (*Model) GetName

func (x *Model) GetName() string

func (*Model) GetPrior

func (x *Model) GetPrior() string

func (*Model) GetProjectid

func (x *Model) GetProjectid() string

func (*Model) GetSource

func (x *Model) GetSource() string

func (*Model) GetType

func (x *Model) GetType() Model_ModelType

func (*Model) ProtoMessage

func (*Model) ProtoMessage()

func (*Model) ProtoReflect

func (x *Model) ProtoReflect() protoreflect.Message

func (*Model) Reset

func (x *Model) Reset()

func (*Model) String

func (x *Model) String() string

type ModelList

type ModelList struct {
	Number uint32   `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	Result []*Model `protobuf:"bytes,2,rep,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*ModelList) Descriptor deprecated

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

Deprecated: Use ModelList.ProtoReflect.Descriptor instead.

func (*ModelList) GetNumber

func (x *ModelList) GetNumber() uint32

func (*ModelList) GetResult

func (x *ModelList) GetResult() []*Model

func (*ModelList) ProtoMessage

func (*ModelList) ProtoMessage()

func (*ModelList) ProtoReflect

func (x *ModelList) ProtoReflect() protoreflect.Message

func (*ModelList) Reset

func (x *ModelList) Reset()

func (*ModelList) String

func (x *ModelList) String() string

type Model_ModelType

type Model_ModelType int32
const (
	Model_ONNX       Model_ModelType = 0
	Model_TENSORFLOW Model_ModelType = 2
	Model_TORCH      Model_ModelType = 3
	Model_H2O        Model_ModelType = 4
	Model_COREML     Model_ModelType = 5
	Model_KERAS      Model_ModelType = 6
	Model_SKLEARN    Model_ModelType = 7
)

func (Model_ModelType) Descriptor

func (Model_ModelType) Enum

func (x Model_ModelType) Enum() *Model_ModelType

func (Model_ModelType) EnumDescriptor deprecated

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

Deprecated: Use Model_ModelType.Descriptor instead.

func (Model_ModelType) Number

func (Model_ModelType) String

func (x Model_ModelType) String() string

func (Model_ModelType) Type

type Organization

type Organization struct {
	Id          string    `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string    `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Members     []*Member `protobuf:"bytes,3,rep,name=members,proto3" json:"members,omitempty"`
	Teams       []*Team   `protobuf:"bytes,4,rep,name=teams,proto3" json:"teams,omitempty"`
	LastUpdated uint64    `protobuf:"varint,5,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

func (*Organization) Descriptor deprecated

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

Deprecated: Use Organization.ProtoReflect.Descriptor instead.

func (*Organization) GetId

func (x *Organization) GetId() string

func (*Organization) GetLastUpdated

func (x *Organization) GetLastUpdated() uint64

func (*Organization) GetMembers

func (x *Organization) GetMembers() []*Member

func (*Organization) GetName

func (x *Organization) GetName() string

func (*Organization) GetTeams

func (x *Organization) GetTeams() []*Team

func (*Organization) ProtoMessage

func (*Organization) ProtoMessage()

func (*Organization) ProtoReflect

func (x *Organization) ProtoReflect() protoreflect.Message

func (*Organization) Reset

func (x *Organization) Reset()

func (*Organization) String

func (x *Organization) String() string

type OrganizationList

type OrganizationList struct {
	Number uint32          `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	Result []*Organization `protobuf:"bytes,2,rep,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*OrganizationList) Descriptor deprecated

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

Deprecated: Use OrganizationList.ProtoReflect.Descriptor instead.

func (*OrganizationList) GetNumber

func (x *OrganizationList) GetNumber() uint32

func (*OrganizationList) GetResult

func (x *OrganizationList) GetResult() []*Organization

func (*OrganizationList) ProtoMessage

func (*OrganizationList) ProtoMessage()

func (*OrganizationList) ProtoReflect

func (x *OrganizationList) ProtoReflect() protoreflect.Message

func (*OrganizationList) Reset

func (x *OrganizationList) Reset()

func (*OrganizationList) String

func (x *OrganizationList) String() string

type Project

type Project struct {
	Id          string    `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string    `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Description string    `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Public      bool      `protobuf:"varint,4,opt,name=public,proto3" json:"public,omitempty"`
	LastUpdated uint64    `protobuf:"varint,5,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	Users       []*Member `protobuf:"bytes,6,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*Project) Descriptor deprecated

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

Deprecated: Use Project.ProtoReflect.Descriptor instead.

func (*Project) GetDescription

func (x *Project) GetDescription() string

func (*Project) GetId

func (x *Project) GetId() string

func (*Project) GetLastUpdated

func (x *Project) GetLastUpdated() uint64

func (*Project) GetName

func (x *Project) GetName() string

func (*Project) GetPublic

func (x *Project) GetPublic() bool

func (*Project) GetUsers

func (x *Project) GetUsers() []*Member

func (*Project) ProtoMessage

func (*Project) ProtoMessage()

func (*Project) ProtoReflect

func (x *Project) ProtoReflect() protoreflect.Message

func (*Project) Reset

func (x *Project) Reset()

func (*Project) String

func (x *Project) String() string

type ProjectList

type ProjectList struct {
	Number uint32     `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	Result []*Project `protobuf:"bytes,2,rep,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*ProjectList) Descriptor deprecated

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

Deprecated: Use ProjectList.ProtoReflect.Descriptor instead.

func (*ProjectList) GetNumber

func (x *ProjectList) GetNumber() uint32

func (*ProjectList) GetResult

func (x *ProjectList) GetResult() []*Project

func (*ProjectList) ProtoMessage

func (*ProjectList) ProtoMessage()

func (*ProjectList) ProtoReflect

func (x *ProjectList) ProtoReflect() protoreflect.Message

func (*ProjectList) Reset

func (x *ProjectList) Reset()

func (*ProjectList) String

func (x *ProjectList) String() string

type Team

type Team struct {
	Id          string     `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string     `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Members     []*Member  `protobuf:"bytes,3,rep,name=members,proto3" json:"members,omitempty"`
	Projects    []*Project `protobuf:"bytes,4,rep,name=projects,proto3" json:"projects,omitempty"`
	LastUpdated uint64     `protobuf:"varint,5,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

func (*Team) Descriptor deprecated

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

Deprecated: Use Team.ProtoReflect.Descriptor instead.

func (*Team) GetId

func (x *Team) GetId() string

func (*Team) GetLastUpdated

func (x *Team) GetLastUpdated() uint64

func (*Team) GetMembers

func (x *Team) GetMembers() []*Member

func (*Team) GetName

func (x *Team) GetName() string

func (*Team) GetProjects

func (x *Team) GetProjects() []*Project

func (*Team) ProtoMessage

func (*Team) ProtoMessage()

func (*Team) ProtoReflect

func (x *Team) ProtoReflect() protoreflect.Message

func (*Team) Reset

func (x *Team) Reset()

func (*Team) String

func (x *Team) String() string

type TeamList

type TeamList struct {
	Number uint32  `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	Result []*Team `protobuf:"bytes,2,rep,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*TeamList) Descriptor deprecated

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

Deprecated: Use TeamList.ProtoReflect.Descriptor instead.

func (*TeamList) GetNumber

func (x *TeamList) GetNumber() uint32

func (*TeamList) GetResult

func (x *TeamList) GetResult() []*Team

func (*TeamList) ProtoMessage

func (*TeamList) ProtoMessage()

func (*TeamList) ProtoReflect

func (x *TeamList) ProtoReflect() protoreflect.Message

func (*TeamList) Reset

func (x *TeamList) Reset()

func (*TeamList) String

func (x *TeamList) String() string

type UnimplementedKatoServer

type UnimplementedKatoServer struct {
}

UnimplementedKatoServer can be embedded to have forward compatible implementations.

func (*UnimplementedKatoServer) DeleteModel

func (*UnimplementedKatoServer) DeleteOrganization

func (*UnimplementedKatoServer) DeleteProject

func (*UnimplementedKatoServer) DeleteTeam

func (*UnimplementedKatoServer) DeleteUser

func (*UnimplementedKatoServer) GetModel

func (*UnimplementedKatoServer) GetOrganization

func (*UnimplementedKatoServer) GetProject

func (*UnimplementedKatoServer) GetTeam

func (*UnimplementedKatoServer) GetUser

func (*UnimplementedKatoServer) ListModels

func (*UnimplementedKatoServer) ListOrganizations

func (*UnimplementedKatoServer) ListProjects

func (*UnimplementedKatoServer) ListTeam

func (*UnimplementedKatoServer) ListUser

func (*UnimplementedKatoServer) PutModel

func (*UnimplementedKatoServer) PutOrganization

func (*UnimplementedKatoServer) PutProject

func (*UnimplementedKatoServer) PutTeam

func (*UnimplementedKatoServer) PutUser

type User

type User struct {
	Id          string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Origin      string `protobuf:"bytes,3,opt,name=origin,proto3" json:"origin,omitempty"`
	Premium     bool   `protobuf:"varint,4,opt,name=premium,proto3" json:"premium,omitempty"`
	LastUpdated uint64 `protobuf:"varint,5,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

func (*User) Descriptor deprecated

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

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetId

func (x *User) GetId() string

func (*User) GetLastUpdated

func (x *User) GetLastUpdated() uint64

func (*User) GetName

func (x *User) GetName() string

func (*User) GetOrigin

func (x *User) GetOrigin() string

func (*User) GetPremium

func (x *User) GetPremium() bool

func (*User) ProtoMessage

func (*User) ProtoMessage()

func (*User) ProtoReflect

func (x *User) ProtoReflect() protoreflect.Message

func (*User) Reset

func (x *User) Reset()

func (*User) String

func (x *User) String() string

type UserList

type UserList struct {
	Number uint32  `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	Result []*User `protobuf:"bytes,2,rep,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*UserList) Descriptor deprecated

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

Deprecated: Use UserList.ProtoReflect.Descriptor instead.

func (*UserList) GetNumber

func (x *UserList) GetNumber() uint32

func (*UserList) GetResult

func (x *UserList) GetResult() []*User

func (*UserList) ProtoMessage

func (*UserList) ProtoMessage()

func (*UserList) ProtoReflect

func (x *UserList) ProtoReflect() protoreflect.Message

func (*UserList) Reset

func (x *UserList) Reset()

func (*UserList) String

func (x *UserList) String() string

Jump to

Keyboard shortcuts

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