Documentation
¶
Index ¶
- Variables
- type Announcement
- func (*Announcement) Descriptor() ([]byte, []int)deprecated
- func (x *Announcement) GetBody() string
- func (x *Announcement) GetLink() string
- func (x *Announcement) GetTitle() string
- func (*Announcement) ProtoMessage()
- func (x *Announcement) ProtoReflect() protoreflect.Message
- func (x *Announcement) Reset()
- func (x *Announcement) String() string
- type AnnouncementsResponse
- func (*AnnouncementsResponse) Descriptor() ([]byte, []int)deprecated
- func (x *AnnouncementsResponse) GetAnnouncements() []*Announcement
- func (*AnnouncementsResponse) ProtoMessage()
- func (x *AnnouncementsResponse) ProtoReflect() protoreflect.Message
- func (x *AnnouncementsResponse) Reset()
- func (x *AnnouncementsResponse) String() string
- type ConfigResponse
- type EnableGamesRequest
- func (*EnableGamesRequest) Descriptor() ([]byte, []int)deprecated
- func (x *EnableGamesRequest) GetEnabled() bool
- func (*EnableGamesRequest) ProtoMessage()
- func (x *EnableGamesRequest) ProtoReflect() protoreflect.Message
- func (x *EnableGamesRequest) Reset()
- func (x *EnableGamesRequest) String() string
- type GetAnnouncementsRequest
- type PermissionsRequest
- func (*PermissionsRequest) Descriptor() ([]byte, []int)deprecated
- func (x *PermissionsRequest) GetAdmin() *wrapperspb.BoolValue
- func (x *PermissionsRequest) GetBot() *wrapperspb.BoolValue
- func (x *PermissionsRequest) GetDirector() *wrapperspb.BoolValue
- func (x *PermissionsRequest) GetMod() *wrapperspb.BoolValue
- func (x *PermissionsRequest) GetUsername() string
- func (*PermissionsRequest) ProtoMessage()
- func (x *PermissionsRequest) ProtoReflect() protoreflect.Message
- func (x *PermissionsRequest) Reset()
- func (x *PermissionsRequest) String() string
- type SetAnnouncementsRequest
- func (*SetAnnouncementsRequest) Descriptor() ([]byte, []int)deprecated
- func (x *SetAnnouncementsRequest) GetAnnouncements() []*Announcement
- func (*SetAnnouncementsRequest) ProtoMessage()
- func (x *SetAnnouncementsRequest) ProtoReflect() protoreflect.Message
- func (x *SetAnnouncementsRequest) Reset()
- func (x *SetAnnouncementsRequest) String() string
- type SetFEHashRequest
- type SetSingleAnnouncementRequest
- func (*SetSingleAnnouncementRequest) Descriptor() ([]byte, []int)deprecated
- func (x *SetSingleAnnouncementRequest) GetAnnouncement() *Announcement
- func (x *SetSingleAnnouncementRequest) GetLinkSearchString() string
- func (*SetSingleAnnouncementRequest) ProtoMessage()
- func (x *SetSingleAnnouncementRequest) ProtoReflect() protoreflect.Message
- func (x *SetSingleAnnouncementRequest) Reset()
- func (x *SetSingleAnnouncementRequest) String() string
- type UserRequest
- type UserResponse
- func (*UserResponse) Descriptor() ([]byte, []int)deprecated
- func (x *UserResponse) GetEmail() string
- func (x *UserResponse) GetIsAdmin() bool
- func (x *UserResponse) GetIsBot() bool
- func (x *UserResponse) GetIsDirector() bool
- func (x *UserResponse) GetIsMod() bool
- func (x *UserResponse) GetUsername() string
- func (x *UserResponse) GetUuid() string
- func (*UserResponse) ProtoMessage()
- func (x *UserResponse) ProtoReflect() protoreflect.Message
- func (x *UserResponse) Reset()
- func (x *UserResponse) String() string
Constants ¶
This section is empty.
Variables ¶
var File_proto_config_service_config_service_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type Announcement ¶
type Announcement struct { Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` Link string `protobuf:"bytes,2,opt,name=link,proto3" json:"link,omitempty"` Body string `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"` // contains filtered or unexported fields }
func (*Announcement) Descriptor
deprecated
func (*Announcement) Descriptor() ([]byte, []int)
Deprecated: Use Announcement.ProtoReflect.Descriptor instead.
func (*Announcement) GetBody ¶
func (x *Announcement) GetBody() string
func (*Announcement) GetLink ¶
func (x *Announcement) GetLink() string
func (*Announcement) GetTitle ¶
func (x *Announcement) GetTitle() string
func (*Announcement) ProtoMessage ¶
func (*Announcement) ProtoMessage()
func (*Announcement) ProtoReflect ¶
func (x *Announcement) ProtoReflect() protoreflect.Message
func (*Announcement) Reset ¶
func (x *Announcement) Reset()
func (*Announcement) String ¶
func (x *Announcement) String() string
type AnnouncementsResponse ¶
type AnnouncementsResponse struct { Announcements []*Announcement `protobuf:"bytes,1,rep,name=announcements,proto3" json:"announcements,omitempty"` // contains filtered or unexported fields }
func (*AnnouncementsResponse) Descriptor
deprecated
func (*AnnouncementsResponse) Descriptor() ([]byte, []int)
Deprecated: Use AnnouncementsResponse.ProtoReflect.Descriptor instead.
func (*AnnouncementsResponse) GetAnnouncements ¶
func (x *AnnouncementsResponse) GetAnnouncements() []*Announcement
func (*AnnouncementsResponse) ProtoMessage ¶
func (*AnnouncementsResponse) ProtoMessage()
func (*AnnouncementsResponse) ProtoReflect ¶
func (x *AnnouncementsResponse) ProtoReflect() protoreflect.Message
func (*AnnouncementsResponse) Reset ¶
func (x *AnnouncementsResponse) Reset()
func (*AnnouncementsResponse) String ¶
func (x *AnnouncementsResponse) String() string
type ConfigResponse ¶
type ConfigResponse struct {
// contains filtered or unexported fields
}
func (*ConfigResponse) Descriptor
deprecated
func (*ConfigResponse) Descriptor() ([]byte, []int)
Deprecated: Use ConfigResponse.ProtoReflect.Descriptor instead.
func (*ConfigResponse) ProtoMessage ¶
func (*ConfigResponse) ProtoMessage()
func (*ConfigResponse) ProtoReflect ¶
func (x *ConfigResponse) ProtoReflect() protoreflect.Message
func (*ConfigResponse) Reset ¶
func (x *ConfigResponse) Reset()
func (*ConfigResponse) String ¶
func (x *ConfigResponse) String() string
type EnableGamesRequest ¶
type EnableGamesRequest struct { Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"` // contains filtered or unexported fields }
func (*EnableGamesRequest) Descriptor
deprecated
func (*EnableGamesRequest) Descriptor() ([]byte, []int)
Deprecated: Use EnableGamesRequest.ProtoReflect.Descriptor instead.
func (*EnableGamesRequest) GetEnabled ¶
func (x *EnableGamesRequest) GetEnabled() bool
func (*EnableGamesRequest) ProtoMessage ¶
func (*EnableGamesRequest) ProtoMessage()
func (*EnableGamesRequest) ProtoReflect ¶
func (x *EnableGamesRequest) ProtoReflect() protoreflect.Message
func (*EnableGamesRequest) Reset ¶
func (x *EnableGamesRequest) Reset()
func (*EnableGamesRequest) String ¶
func (x *EnableGamesRequest) String() string
type GetAnnouncementsRequest ¶
type GetAnnouncementsRequest struct {
// contains filtered or unexported fields
}
func (*GetAnnouncementsRequest) Descriptor
deprecated
func (*GetAnnouncementsRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetAnnouncementsRequest.ProtoReflect.Descriptor instead.
func (*GetAnnouncementsRequest) ProtoMessage ¶
func (*GetAnnouncementsRequest) ProtoMessage()
func (*GetAnnouncementsRequest) ProtoReflect ¶
func (x *GetAnnouncementsRequest) ProtoReflect() protoreflect.Message
func (*GetAnnouncementsRequest) Reset ¶
func (x *GetAnnouncementsRequest) Reset()
func (*GetAnnouncementsRequest) String ¶
func (x *GetAnnouncementsRequest) String() string
type PermissionsRequest ¶
type PermissionsRequest struct { Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` Director *wrapperspb.BoolValue `protobuf:"bytes,2,opt,name=director,proto3" json:"director,omitempty"` Admin *wrapperspb.BoolValue `protobuf:"bytes,3,opt,name=admin,proto3" json:"admin,omitempty"` Mod *wrapperspb.BoolValue `protobuf:"bytes,4,opt,name=mod,proto3" json:"mod,omitempty"` Bot *wrapperspb.BoolValue `protobuf:"bytes,5,opt,name=bot,proto3" json:"bot,omitempty"` // contains filtered or unexported fields }
func (*PermissionsRequest) Descriptor
deprecated
func (*PermissionsRequest) Descriptor() ([]byte, []int)
Deprecated: Use PermissionsRequest.ProtoReflect.Descriptor instead.
func (*PermissionsRequest) GetAdmin ¶
func (x *PermissionsRequest) GetAdmin() *wrapperspb.BoolValue
func (*PermissionsRequest) GetBot ¶
func (x *PermissionsRequest) GetBot() *wrapperspb.BoolValue
func (*PermissionsRequest) GetDirector ¶
func (x *PermissionsRequest) GetDirector() *wrapperspb.BoolValue
func (*PermissionsRequest) GetMod ¶
func (x *PermissionsRequest) GetMod() *wrapperspb.BoolValue
func (*PermissionsRequest) GetUsername ¶
func (x *PermissionsRequest) GetUsername() string
func (*PermissionsRequest) ProtoMessage ¶
func (*PermissionsRequest) ProtoMessage()
func (*PermissionsRequest) ProtoReflect ¶
func (x *PermissionsRequest) ProtoReflect() protoreflect.Message
func (*PermissionsRequest) Reset ¶
func (x *PermissionsRequest) Reset()
func (*PermissionsRequest) String ¶
func (x *PermissionsRequest) String() string
type SetAnnouncementsRequest ¶
type SetAnnouncementsRequest struct { Announcements []*Announcement `protobuf:"bytes,1,rep,name=announcements,proto3" json:"announcements,omitempty"` // contains filtered or unexported fields }
func (*SetAnnouncementsRequest) Descriptor
deprecated
func (*SetAnnouncementsRequest) Descriptor() ([]byte, []int)
Deprecated: Use SetAnnouncementsRequest.ProtoReflect.Descriptor instead.
func (*SetAnnouncementsRequest) GetAnnouncements ¶
func (x *SetAnnouncementsRequest) GetAnnouncements() []*Announcement
func (*SetAnnouncementsRequest) ProtoMessage ¶
func (*SetAnnouncementsRequest) ProtoMessage()
func (*SetAnnouncementsRequest) ProtoReflect ¶
func (x *SetAnnouncementsRequest) ProtoReflect() protoreflect.Message
func (*SetAnnouncementsRequest) Reset ¶
func (x *SetAnnouncementsRequest) Reset()
func (*SetAnnouncementsRequest) String ¶
func (x *SetAnnouncementsRequest) String() string
type SetFEHashRequest ¶
type SetFEHashRequest struct { Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"` // contains filtered or unexported fields }
func (*SetFEHashRequest) Descriptor
deprecated
func (*SetFEHashRequest) Descriptor() ([]byte, []int)
Deprecated: Use SetFEHashRequest.ProtoReflect.Descriptor instead.
func (*SetFEHashRequest) GetHash ¶
func (x *SetFEHashRequest) GetHash() string
func (*SetFEHashRequest) ProtoMessage ¶
func (*SetFEHashRequest) ProtoMessage()
func (*SetFEHashRequest) ProtoReflect ¶
func (x *SetFEHashRequest) ProtoReflect() protoreflect.Message
func (*SetFEHashRequest) Reset ¶
func (x *SetFEHashRequest) Reset()
func (*SetFEHashRequest) String ¶
func (x *SetFEHashRequest) String() string
type SetSingleAnnouncementRequest ¶
type SetSingleAnnouncementRequest struct { Announcement *Announcement `protobuf:"bytes,1,opt,name=announcement,proto3" json:"announcement,omitempty"` LinkSearchString string `protobuf:"bytes,2,opt,name=link_search_string,json=linkSearchString,proto3" json:"link_search_string,omitempty"` // contains filtered or unexported fields }
func (*SetSingleAnnouncementRequest) Descriptor
deprecated
func (*SetSingleAnnouncementRequest) Descriptor() ([]byte, []int)
Deprecated: Use SetSingleAnnouncementRequest.ProtoReflect.Descriptor instead.
func (*SetSingleAnnouncementRequest) GetAnnouncement ¶
func (x *SetSingleAnnouncementRequest) GetAnnouncement() *Announcement
func (*SetSingleAnnouncementRequest) GetLinkSearchString ¶
func (x *SetSingleAnnouncementRequest) GetLinkSearchString() string
func (*SetSingleAnnouncementRequest) ProtoMessage ¶
func (*SetSingleAnnouncementRequest) ProtoMessage()
func (*SetSingleAnnouncementRequest) ProtoReflect ¶
func (x *SetSingleAnnouncementRequest) ProtoReflect() protoreflect.Message
func (*SetSingleAnnouncementRequest) Reset ¶
func (x *SetSingleAnnouncementRequest) Reset()
func (*SetSingleAnnouncementRequest) String ¶
func (x *SetSingleAnnouncementRequest) String() string
type UserRequest ¶
type UserRequest struct { Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` // contains filtered or unexported fields }
func (*UserRequest) Descriptor
deprecated
func (*UserRequest) Descriptor() ([]byte, []int)
Deprecated: Use UserRequest.ProtoReflect.Descriptor instead.
func (*UserRequest) GetUsername ¶
func (x *UserRequest) GetUsername() string
func (*UserRequest) ProtoMessage ¶
func (*UserRequest) ProtoMessage()
func (*UserRequest) ProtoReflect ¶
func (x *UserRequest) ProtoReflect() protoreflect.Message
func (*UserRequest) Reset ¶
func (x *UserRequest) Reset()
func (*UserRequest) String ¶
func (x *UserRequest) String() string
type UserResponse ¶
type UserResponse struct { Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` Uuid string `protobuf:"bytes,2,opt,name=uuid,proto3" json:"uuid,omitempty"` Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"` IsBot bool `protobuf:"varint,4,opt,name=is_bot,json=isBot,proto3" json:"is_bot,omitempty"` IsDirector bool `protobuf:"varint,5,opt,name=is_director,json=isDirector,proto3" json:"is_director,omitempty"` IsMod bool `protobuf:"varint,6,opt,name=is_mod,json=isMod,proto3" json:"is_mod,omitempty"` IsAdmin bool `protobuf:"varint,7,opt,name=is_admin,json=isAdmin,proto3" json:"is_admin,omitempty"` // contains filtered or unexported fields }
func (*UserResponse) Descriptor
deprecated
func (*UserResponse) Descriptor() ([]byte, []int)
Deprecated: Use UserResponse.ProtoReflect.Descriptor instead.
func (*UserResponse) GetEmail ¶
func (x *UserResponse) GetEmail() string
func (*UserResponse) GetIsAdmin ¶
func (x *UserResponse) GetIsAdmin() bool
func (*UserResponse) GetIsBot ¶
func (x *UserResponse) GetIsBot() bool
func (*UserResponse) GetIsDirector ¶
func (x *UserResponse) GetIsDirector() bool
func (*UserResponse) GetIsMod ¶
func (x *UserResponse) GetIsMod() bool
func (*UserResponse) GetUsername ¶
func (x *UserResponse) GetUsername() string
func (*UserResponse) GetUuid ¶
func (x *UserResponse) GetUuid() string
func (*UserResponse) ProtoMessage ¶
func (*UserResponse) ProtoMessage()
func (*UserResponse) ProtoReflect ¶
func (x *UserResponse) ProtoReflect() protoreflect.Message
func (*UserResponse) Reset ¶
func (x *UserResponse) Reset()
func (*UserResponse) String ¶
func (x *UserResponse) String() string