Source code for koapy.cli.commands.disable

import click

from .auto_login import auto_login


@click.group(short_help="Disable things, including auto login.")
[docs]def disable(): pass
disable.add_command(auto_login)