579 lines
17 KiB
Go
579 lines
17 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.6
|
|
// protoc v6.30.1
|
|
// source: actions/actions.proto
|
|
|
|
package actions
|
|
|
|
import (
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
unsafe "unsafe"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
type Action_ActionType int32
|
|
|
|
const (
|
|
Action_MOVE Action_ActionType = 0
|
|
Action_CHAT Action_ActionType = 1
|
|
Action_DISCONNECT Action_ActionType = 2
|
|
Action_LOGIN Action_ActionType = 3
|
|
Action_REGISTER Action_ActionType = 4
|
|
)
|
|
|
|
// Enum value maps for Action_ActionType.
|
|
var (
|
|
Action_ActionType_name = map[int32]string{
|
|
0: "MOVE",
|
|
1: "CHAT",
|
|
2: "DISCONNECT",
|
|
3: "LOGIN",
|
|
4: "REGISTER",
|
|
}
|
|
Action_ActionType_value = map[string]int32{
|
|
"MOVE": 0,
|
|
"CHAT": 1,
|
|
"DISCONNECT": 2,
|
|
"LOGIN": 3,
|
|
"REGISTER": 4,
|
|
}
|
|
)
|
|
|
|
func (x Action_ActionType) Enum() *Action_ActionType {
|
|
p := new(Action_ActionType)
|
|
*p = x
|
|
return p
|
|
}
|
|
|
|
func (x Action_ActionType) String() string {
|
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
}
|
|
|
|
func (Action_ActionType) Descriptor() protoreflect.EnumDescriptor {
|
|
return file_actions_actions_proto_enumTypes[0].Descriptor()
|
|
}
|
|
|
|
func (Action_ActionType) Type() protoreflect.EnumType {
|
|
return &file_actions_actions_proto_enumTypes[0]
|
|
}
|
|
|
|
func (x Action_ActionType) Number() protoreflect.EnumNumber {
|
|
return protoreflect.EnumNumber(x)
|
|
}
|
|
|
|
// Deprecated: Use Action_ActionType.Descriptor instead.
|
|
func (Action_ActionType) EnumDescriptor() ([]byte, []int) {
|
|
return file_actions_actions_proto_rawDescGZIP(), []int{0, 0}
|
|
}
|
|
|
|
type Action struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Type Action_ActionType `protobuf:"varint,1,opt,name=type,proto3,enum=actions.Action_ActionType" json:"type,omitempty"`
|
|
X int32 `protobuf:"varint,2,opt,name=x,proto3" json:"x,omitempty"`
|
|
Y int32 `protobuf:"varint,3,opt,name=y,proto3" json:"y,omitempty"`
|
|
PlayerId int32 `protobuf:"varint,4,opt,name=player_id,json=playerId,proto3" json:"player_id,omitempty"`
|
|
ChatMessage string `protobuf:"bytes,5,opt,name=chat_message,json=chatMessage,proto3" json:"chat_message,omitempty"`
|
|
Username string `protobuf:"bytes,6,opt,name=username,proto3" json:"username,omitempty"`
|
|
Password string `protobuf:"bytes,7,opt,name=password,proto3" json:"password,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Action) Reset() {
|
|
*x = Action{}
|
|
mi := &file_actions_actions_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Action) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Action) ProtoMessage() {}
|
|
|
|
func (x *Action) ProtoReflect() protoreflect.Message {
|
|
mi := &file_actions_actions_proto_msgTypes[0]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Action.ProtoReflect.Descriptor instead.
|
|
func (*Action) Descriptor() ([]byte, []int) {
|
|
return file_actions_actions_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *Action) GetType() Action_ActionType {
|
|
if x != nil {
|
|
return x.Type
|
|
}
|
|
return Action_MOVE
|
|
}
|
|
|
|
func (x *Action) GetX() int32 {
|
|
if x != nil {
|
|
return x.X
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Action) GetY() int32 {
|
|
if x != nil {
|
|
return x.Y
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Action) GetPlayerId() int32 {
|
|
if x != nil {
|
|
return x.PlayerId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Action) GetChatMessage() string {
|
|
if x != nil {
|
|
return x.ChatMessage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Action) GetUsername() string {
|
|
if x != nil {
|
|
return x.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Action) GetPassword() string {
|
|
if x != nil {
|
|
return x.Password
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ActionBatch struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
PlayerId int32 `protobuf:"varint,1,opt,name=player_id,json=playerId,proto3" json:"player_id,omitempty"`
|
|
Actions []*Action `protobuf:"bytes,2,rep,name=actions,proto3" json:"actions,omitempty"`
|
|
Tick int64 `protobuf:"varint,3,opt,name=tick,proto3" json:"tick,omitempty"`
|
|
ProtocolVersion int32 `protobuf:"varint,4,opt,name=protocol_version,json=protocolVersion,proto3" json:"protocol_version,omitempty"`
|
|
LastSeenMessageTimestamp int64 `protobuf:"varint,5,opt,name=last_seen_message_timestamp,json=lastSeenMessageTimestamp,proto3" json:"last_seen_message_timestamp,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ActionBatch) Reset() {
|
|
*x = ActionBatch{}
|
|
mi := &file_actions_actions_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ActionBatch) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ActionBatch) ProtoMessage() {}
|
|
|
|
func (x *ActionBatch) ProtoReflect() protoreflect.Message {
|
|
mi := &file_actions_actions_proto_msgTypes[1]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ActionBatch.ProtoReflect.Descriptor instead.
|
|
func (*ActionBatch) Descriptor() ([]byte, []int) {
|
|
return file_actions_actions_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *ActionBatch) GetPlayerId() int32 {
|
|
if x != nil {
|
|
return x.PlayerId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ActionBatch) GetActions() []*Action {
|
|
if x != nil {
|
|
return x.Actions
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *ActionBatch) GetTick() int64 {
|
|
if x != nil {
|
|
return x.Tick
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ActionBatch) GetProtocolVersion() int32 {
|
|
if x != nil {
|
|
return x.ProtocolVersion
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ActionBatch) GetLastSeenMessageTimestamp() int64 {
|
|
if x != nil {
|
|
return x.LastSeenMessageTimestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type PlayerState struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
PlayerId int32 `protobuf:"varint,1,opt,name=player_id,json=playerId,proto3" json:"player_id,omitempty"`
|
|
X int32 `protobuf:"varint,2,opt,name=x,proto3" json:"x,omitempty"`
|
|
Y int32 `protobuf:"varint,3,opt,name=y,proto3" json:"y,omitempty"`
|
|
Username string `protobuf:"bytes,4,opt,name=username,proto3" json:"username,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *PlayerState) Reset() {
|
|
*x = PlayerState{}
|
|
mi := &file_actions_actions_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *PlayerState) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PlayerState) ProtoMessage() {}
|
|
|
|
func (x *PlayerState) ProtoReflect() protoreflect.Message {
|
|
mi := &file_actions_actions_proto_msgTypes[2]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PlayerState.ProtoReflect.Descriptor instead.
|
|
func (*PlayerState) Descriptor() ([]byte, []int) {
|
|
return file_actions_actions_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *PlayerState) GetPlayerId() int32 {
|
|
if x != nil {
|
|
return x.PlayerId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *PlayerState) GetX() int32 {
|
|
if x != nil {
|
|
return x.X
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *PlayerState) GetY() int32 {
|
|
if x != nil {
|
|
return x.Y
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *PlayerState) GetUsername() string {
|
|
if x != nil {
|
|
return x.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ChatMessage struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
PlayerId int32 `protobuf:"varint,1,opt,name=player_id,json=playerId,proto3" json:"player_id,omitempty"`
|
|
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
|
Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content,omitempty"`
|
|
Timestamp int64 `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ChatMessage) Reset() {
|
|
*x = ChatMessage{}
|
|
mi := &file_actions_actions_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ChatMessage) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ChatMessage) ProtoMessage() {}
|
|
|
|
func (x *ChatMessage) ProtoReflect() protoreflect.Message {
|
|
mi := &file_actions_actions_proto_msgTypes[3]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ChatMessage.ProtoReflect.Descriptor instead.
|
|
func (*ChatMessage) Descriptor() ([]byte, []int) {
|
|
return file_actions_actions_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *ChatMessage) GetPlayerId() int32 {
|
|
if x != nil {
|
|
return x.PlayerId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ChatMessage) GetUsername() string {
|
|
if x != nil {
|
|
return x.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ChatMessage) GetContent() string {
|
|
if x != nil {
|
|
return x.Content
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ChatMessage) GetTimestamp() int64 {
|
|
if x != nil {
|
|
return x.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ServerMessage struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
PlayerId int32 `protobuf:"varint,1,opt,name=player_id,json=playerId,proto3" json:"player_id,omitempty"`
|
|
Players []*PlayerState `protobuf:"bytes,2,rep,name=players,proto3" json:"players,omitempty"`
|
|
CurrentTick int64 `protobuf:"varint,3,opt,name=current_tick,json=currentTick,proto3" json:"current_tick,omitempty"`
|
|
ChatMessages []*ChatMessage `protobuf:"bytes,4,rep,name=chat_messages,json=chatMessages,proto3" json:"chat_messages,omitempty"`
|
|
AuthSuccess bool `protobuf:"varint,5,opt,name=auth_success,json=authSuccess,proto3" json:"auth_success,omitempty"`
|
|
ErrorMessage string `protobuf:"bytes,6,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`
|
|
ProtocolVersion int32 `protobuf:"varint,7,opt,name=protocol_version,json=protocolVersion,proto3" json:"protocol_version,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ServerMessage) Reset() {
|
|
*x = ServerMessage{}
|
|
mi := &file_actions_actions_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ServerMessage) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ServerMessage) ProtoMessage() {}
|
|
|
|
func (x *ServerMessage) ProtoReflect() protoreflect.Message {
|
|
mi := &file_actions_actions_proto_msgTypes[4]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ServerMessage.ProtoReflect.Descriptor instead.
|
|
func (*ServerMessage) Descriptor() ([]byte, []int) {
|
|
return file_actions_actions_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
|
|
func (x *ServerMessage) GetPlayerId() int32 {
|
|
if x != nil {
|
|
return x.PlayerId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ServerMessage) GetPlayers() []*PlayerState {
|
|
if x != nil {
|
|
return x.Players
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *ServerMessage) GetCurrentTick() int64 {
|
|
if x != nil {
|
|
return x.CurrentTick
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ServerMessage) GetChatMessages() []*ChatMessage {
|
|
if x != nil {
|
|
return x.ChatMessages
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *ServerMessage) GetAuthSuccess() bool {
|
|
if x != nil {
|
|
return x.AuthSuccess
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *ServerMessage) GetErrorMessage() string {
|
|
if x != nil {
|
|
return x.ErrorMessage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ServerMessage) GetProtocolVersion() int32 {
|
|
if x != nil {
|
|
return x.ProtocolVersion
|
|
}
|
|
return 0
|
|
}
|
|
|
|
var File_actions_actions_proto protoreflect.FileDescriptor
|
|
|
|
const file_actions_actions_proto_rawDesc = "" +
|
|
"\n" +
|
|
"\x15actions/actions.proto\x12\aactions\"\x97\x02\n" +
|
|
"\x06Action\x12.\n" +
|
|
"\x04type\x18\x01 \x01(\x0e2\x1a.actions.Action.ActionTypeR\x04type\x12\f\n" +
|
|
"\x01x\x18\x02 \x01(\x05R\x01x\x12\f\n" +
|
|
"\x01y\x18\x03 \x01(\x05R\x01y\x12\x1b\n" +
|
|
"\tplayer_id\x18\x04 \x01(\x05R\bplayerId\x12!\n" +
|
|
"\fchat_message\x18\x05 \x01(\tR\vchatMessage\x12\x1a\n" +
|
|
"\busername\x18\x06 \x01(\tR\busername\x12\x1a\n" +
|
|
"\bpassword\x18\a \x01(\tR\bpassword\"I\n" +
|
|
"\n" +
|
|
"ActionType\x12\b\n" +
|
|
"\x04MOVE\x10\x00\x12\b\n" +
|
|
"\x04CHAT\x10\x01\x12\x0e\n" +
|
|
"\n" +
|
|
"DISCONNECT\x10\x02\x12\t\n" +
|
|
"\x05LOGIN\x10\x03\x12\f\n" +
|
|
"\bREGISTER\x10\x04\"\xd3\x01\n" +
|
|
"\vActionBatch\x12\x1b\n" +
|
|
"\tplayer_id\x18\x01 \x01(\x05R\bplayerId\x12)\n" +
|
|
"\aactions\x18\x02 \x03(\v2\x0f.actions.ActionR\aactions\x12\x12\n" +
|
|
"\x04tick\x18\x03 \x01(\x03R\x04tick\x12)\n" +
|
|
"\x10protocol_version\x18\x04 \x01(\x05R\x0fprotocolVersion\x12=\n" +
|
|
"\x1blast_seen_message_timestamp\x18\x05 \x01(\x03R\x18lastSeenMessageTimestamp\"b\n" +
|
|
"\vPlayerState\x12\x1b\n" +
|
|
"\tplayer_id\x18\x01 \x01(\x05R\bplayerId\x12\f\n" +
|
|
"\x01x\x18\x02 \x01(\x05R\x01x\x12\f\n" +
|
|
"\x01y\x18\x03 \x01(\x05R\x01y\x12\x1a\n" +
|
|
"\busername\x18\x04 \x01(\tR\busername\"~\n" +
|
|
"\vChatMessage\x12\x1b\n" +
|
|
"\tplayer_id\x18\x01 \x01(\x05R\bplayerId\x12\x1a\n" +
|
|
"\busername\x18\x02 \x01(\tR\busername\x12\x18\n" +
|
|
"\acontent\x18\x03 \x01(\tR\acontent\x12\x1c\n" +
|
|
"\ttimestamp\x18\x04 \x01(\x03R\ttimestamp\"\xad\x02\n" +
|
|
"\rServerMessage\x12\x1b\n" +
|
|
"\tplayer_id\x18\x01 \x01(\x05R\bplayerId\x12.\n" +
|
|
"\aplayers\x18\x02 \x03(\v2\x14.actions.PlayerStateR\aplayers\x12!\n" +
|
|
"\fcurrent_tick\x18\x03 \x01(\x03R\vcurrentTick\x129\n" +
|
|
"\rchat_messages\x18\x04 \x03(\v2\x14.actions.ChatMessageR\fchatMessages\x12!\n" +
|
|
"\fauth_success\x18\x05 \x01(\bR\vauthSuccess\x12#\n" +
|
|
"\rerror_message\x18\x06 \x01(\tR\ferrorMessage\x12)\n" +
|
|
"\x10protocol_version\x18\a \x01(\x05R\x0fprotocolVersionB,Z*gitea.boner.be/bdnugget/goonserver/actionsb\x06proto3"
|
|
|
|
var (
|
|
file_actions_actions_proto_rawDescOnce sync.Once
|
|
file_actions_actions_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_actions_actions_proto_rawDescGZIP() []byte {
|
|
file_actions_actions_proto_rawDescOnce.Do(func() {
|
|
file_actions_actions_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_actions_actions_proto_rawDesc), len(file_actions_actions_proto_rawDesc)))
|
|
})
|
|
return file_actions_actions_proto_rawDescData
|
|
}
|
|
|
|
var file_actions_actions_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
var file_actions_actions_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
|
|
var file_actions_actions_proto_goTypes = []any{
|
|
(Action_ActionType)(0), // 0: actions.Action.ActionType
|
|
(*Action)(nil), // 1: actions.Action
|
|
(*ActionBatch)(nil), // 2: actions.ActionBatch
|
|
(*PlayerState)(nil), // 3: actions.PlayerState
|
|
(*ChatMessage)(nil), // 4: actions.ChatMessage
|
|
(*ServerMessage)(nil), // 5: actions.ServerMessage
|
|
}
|
|
var file_actions_actions_proto_depIdxs = []int32{
|
|
0, // 0: actions.Action.type:type_name -> actions.Action.ActionType
|
|
1, // 1: actions.ActionBatch.actions:type_name -> actions.Action
|
|
3, // 2: actions.ServerMessage.players:type_name -> actions.PlayerState
|
|
4, // 3: actions.ServerMessage.chat_messages:type_name -> actions.ChatMessage
|
|
4, // [4:4] is the sub-list for method output_type
|
|
4, // [4:4] is the sub-list for method input_type
|
|
4, // [4:4] is the sub-list for extension type_name
|
|
4, // [4:4] is the sub-list for extension extendee
|
|
0, // [0:4] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_actions_actions_proto_init() }
|
|
func file_actions_actions_proto_init() {
|
|
if File_actions_actions_proto != nil {
|
|
return
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_actions_actions_proto_rawDesc), len(file_actions_actions_proto_rawDesc)),
|
|
NumEnums: 1,
|
|
NumMessages: 5,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_actions_actions_proto_goTypes,
|
|
DependencyIndexes: file_actions_actions_proto_depIdxs,
|
|
EnumInfos: file_actions_actions_proto_enumTypes,
|
|
MessageInfos: file_actions_actions_proto_msgTypes,
|
|
}.Build()
|
|
File_actions_actions_proto = out.File
|
|
file_actions_actions_proto_goTypes = nil
|
|
file_actions_actions_proto_depIdxs = nil
|
|
}
|