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
+13
View File
@@ -0,0 +1,13 @@
PROTO_DIR="../protocol"
proto:
@{ \
if [ -d "$(PROTO_DIR)" ]; \
then \
protoc --dart_out=lib/src/proto -I$(PROTO_DIR) $(PROTO_DIR)/livekit_rtc.proto $(PROTO_DIR)/livekit_models.proto; \
else \
echo "../protocol is not found. github.com/livekit/protocol must be checked out"; \
fi \
}
.PHONY: proto