1
0
mirror of https://github.com/ihabunek/toot synced 2025-01-25 13:08:35 +01:00
2020-01-23 13:24:49 +01:00

14 lines
369 B
Python

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