From 8d28c17369653f2c150aa55012889fc14251ff66 Mon Sep 17 00:00:00 2001 From: Jacob Segal Date: Fri, 13 Jun 2025 21:45:21 -0700 Subject: [PATCH] Add a missing file It looks like this got caught by .gitignore? There's probably a better place to put it, but I'm not sure what that is. --- protocol.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 protocol.py diff --git a/protocol.py b/protocol.py new file mode 100644 index 000000000..038a0a840 --- /dev/null +++ b/protocol.py @@ -0,0 +1,7 @@ + +class BinaryEventTypes: + PREVIEW_IMAGE = 1 + UNENCODED_PREVIEW_IMAGE = 2 + TEXT = 3 + PREVIEW_IMAGE_WITH_METADATA = 4 +