1
0
mirror of https://github.com/ihabunek/toot synced 2024-12-25 00:20:55 +01:00
Toot-Mastodon-CLI-TUI-clien.../toot/__init__.py
2017-04-16 14:14:33 +02:00

12 lines
322 B
Python

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