konfa-server/proto/konfa/channel/v1/channels.proto
royalcat 530c24b019
All checks were successful
docker / build-docker (push) Successful in 2m20s
wip
2024-12-23 15:54:51 +03:00

27 lines
452 B
Protocol Buffer

syntax = "proto3";
package konfa.channel.v1;
option go_package = "/channelv1";
// import "google/protobuf/timestamp.proto";
message Channel {
oneof channel {
TextChannel text_channel = 1;
VoiceChannel voice_channel = 2;
}
}
message TextChannel {
string server_id = 1;
string channel_id = 2;
string name = 3;
}
message VoiceChannel {
string server_id = 1;
string channel_id = 2;
string name = 3;
}