1
0
mirror of https://github.com/ihabunek/toot synced 2025-01-10 16:52:40 +01:00
Toot-Mastodon-CLI-TUI-clien.../toot/cli/diag.py

15 lines
236 B
Python
Raw Normal View History

from toot.output import print_diags
from toot.cli import (
cli,
pass_context,
Context,
)
@cli.command()
@pass_context
def diag(ctx: Context):
"""Display useful information for diagnosing problems"""
print_diags()