Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions protobufs/rpc/room.proto
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,24 @@ service Room {
};
};
};
rpc ListParticipants(livekit.ListParticipantsRequest) returns (livekit.ListParticipantsResponse) {
option (psrpc.options) = {
topics: true
topic_params: {
group: "room"
names: ["room"]
typed: true
};
};
};
rpc GetParticipant(livekit.RoomParticipantIdentity) returns (livekit.ParticipantInfo) {
option (psrpc.options) = {
topics: true
topic_params: {
group: "room"
names: ["room"]
typed: true
};
};
};
}
50 changes: 50 additions & 0 deletions rpc/room.psrpc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

170 changes: 170 additions & 0 deletions rpc/rpcfakes/fake_typed_room_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading