feat(streamserver): Allow hiding the stream key

This commit is contained in:
Dmitrii Okunev
2024-10-16 16:35:34 +01:00
parent e37a330a03
commit ce70093117
32 changed files with 2248 additions and 1888 deletions

View File

@@ -36,9 +36,14 @@ message Error {
string message = 2;
}
message ResourcePathURL {
string url = 1;
string authKey = 2;
}
message ResourcePath {
oneof ResourcePath {
string url = 1;
ResourcePathURL url = 1;
}
}