initial commit, with generated protobufs

This commit is contained in:
David Zhao
2021-07-16 15:29:06 -07:00
commit 941bbbdc32
19 changed files with 3042 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
library livekit_client;
/// A Calculator.
class Calculator {
/// Returns [value] plus 1.
int addOne(int value) => value + 1;
}