mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-13 00:36:30 +00:00
3b108d21de
This adds the basic feratures that we need for a working plugin system, but there are still many TODOs in the codebase.
55 lines
1.2 KiB
Python
Executable File
55 lines
1.2 KiB
Python
Executable File
#! /usr/bin/env python3
|
|
import sys
|
|
|
|
import click
|
|
import click_repl
|
|
|
|
from .android import android
|
|
from .config import config_command
|
|
from .dev import dev
|
|
from .images import images_command
|
|
from .k8s import k8s
|
|
from .local import local
|
|
from .plugins import plugins_command
|
|
from .ui import ui
|
|
from .webui import webui
|
|
from ..__about__ import __version__
|
|
from .. import exceptions
|
|
from .. import fmt
|
|
|
|
|
|
def main():
|
|
try:
|
|
cli()
|
|
except exceptions.TutorError as e:
|
|
fmt.echo_error("Error: {}".format(e.args[0]))
|
|
sys.exit(1)
|
|
|
|
|
|
@click.group(context_settings={"help_option_names": ["-h", "--help", "help"]})
|
|
@click.version_option(version=__version__)
|
|
def cli():
|
|
pass
|
|
|
|
|
|
@click.command(help="Print this help", name="help")
|
|
def print_help():
|
|
with click.Context(cli) as context:
|
|
click.echo(cli.get_help(context))
|
|
|
|
|
|
click_repl.register_repl(cli, name="ui")
|
|
cli.add_command(images_command)
|
|
cli.add_command(config_command)
|
|
cli.add_command(local)
|
|
cli.add_command(dev)
|
|
cli.add_command(android)
|
|
cli.add_command(k8s)
|
|
cli.add_command(ui)
|
|
cli.add_command(webui)
|
|
cli.add_command(print_help)
|
|
cli.add_command(plugins_command)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|