1
0
mirror of https://github.com/ihabunek/toot synced 2024-12-26 00:42:43 +01:00
Toot-Mastodon-CLI-TUI-clien.../toot/__init__.py
2023-03-09 11:54:19 +01:00

12 lines
352 B
Python

from collections import namedtuple
__version__ = '0.36.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])
DEFAULT_INSTANCE = 'https://mastodon.social'
CLIENT_NAME = 'toot - a Mastodon CLI client'
CLIENT_WEBSITE = 'https://github.com/ihabunek/toot'