diff options
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -16,6 +16,8 @@ TOOT_CLIENT_ID = config["TOOT"]["CLIENT_ID"] | |||
16 | TOOT_CLIENT_SECRET = config["TOOT"]["CLIENT_SECRET"] | 16 | TOOT_CLIENT_SECRET = config["TOOT"]["CLIENT_SECRET"] |
17 | TOOT_ACCESS_TOKEN = config["TOOT"]["ACCESS_TOKEN"] | 17 | TOOT_ACCESS_TOKEN = config["TOOT"]["ACCESS_TOKEN"] |
18 | 18 | ||
19 | DEFAULT_TOOT_VISIBILITY = "private" | ||
20 | |||
19 | MEDIA_GROUP_TIMEOUT = 3 | 21 | MEDIA_GROUP_TIMEOUT = 3 |
20 | 22 | ||
21 | WAIT_LOCATION, LOCATION_SEARCH_KEYWORD, LOCATION_CONFIRMATION, ADD_MEDIA, ADD_COMMENT = range(5) | 23 | WAIT_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 | |||
43 | KEY_TOOT_STATUS_ID = "toot_status_id" | ||
44 | KEY_TOOT_STATUS_CONTENT = "toot_status_content" | ||