1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-23 06:25:26 +00:00
toot/toot/__init__.py

12 lines
345 B
Python
Raw Normal View History

2017-04-15 12:53:08 +00:00
# -*- coding: utf-8 -*-
2017-04-12 14:42:04 +00:00
from collections import namedtuple
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])
2017-04-12 14:42:04 +00:00
DEFAULT_INSTANCE = 'mastodon.social'
2017-04-19 12:47:30 +00:00
CLIENT_NAME = 'toot - a Mastodon CLI client'
2017-04-16 12:14:33 +00:00
CLIENT_WEBSITE = 'https://github.com/ihabunek/toot'