aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'config.py')
-rw-r--r--config.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.py b/config.py
index ea50a77..a412784 100644
--- a/config.py
+++ b/config.py
@@ -16,6 +16,8 @@ TOOT_CLIENT_ID = config["TOOT"]["CLIENT_ID"]
16TOOT_CLIENT_SECRET = config["TOOT"]["CLIENT_SECRET"] 16TOOT_CLIENT_SECRET = config["TOOT"]["CLIENT_SECRET"]
17TOOT_ACCESS_TOKEN = config["TOOT"]["ACCESS_TOKEN"] 17TOOT_ACCESS_TOKEN = config["TOOT"]["ACCESS_TOKEN"]
18 18
19DEFAULT_TOOT_VISIBILITY = "private"
20
19MEDIA_GROUP_TIMEOUT = 3 21MEDIA_GROUP_TIMEOUT = 3
20 22
21WAIT_LOCATION, LOCATION_SEARCH_KEYWORD, LOCATION_CONFIRMATION, ADD_MEDIA, ADD_COMMENT = range(5) 23WAIT_LOCATION, LOCATION_SEARCH_KEYWORD, LOCATION_CONFIRMATION, ADD_MEDIA, ADD_COMMENT = range(5)
@@ -36,3 +38,7 @@ class MsgDict(TypedDict):
36 status_id: int 38 status_id: int
37 content: str 39 content: str
38 chat_id: int 40 chat_id: int
41
42
43KEY_TOOT_STATUS_ID = "toot_status_id"
44KEY_TOOT_STATUS_CONTENT = "toot_status_content"
Powered by cgit v1.2.3 (git 2.41.0)