mirror of
https://github.com/ihabunek/toot
synced 2025-01-10 16:52:40 +01:00
15 lines
236 B
Python
15 lines
236 B
Python
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()
|