Source code for koapy.cli.commands.enable

import click

from .auto_login import auto_login


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