toot/toot/__main__.py

6 wiersze
151 B
Python
Czysty Zwykły widok Historia

2023-02-04 08:09:35 +00:00
from toot.asynch.commands import cli
2023-06-26 13:16:12 +00:00
from toot.settings import load_settings
2023-02-04 08:09:35 +00:00
2023-06-26 13:16:12 +00:00
defaults = load_settings().get("commands", {})
cli(default_map=defaults)