Spaces:
Running
Running
File size: 266 Bytes
3a6f1f2 3faa99b 3a6f1f2 c8f8b0e 3a6f1f2 3faa99b c8f8b0e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import click
from . import _version
from .commands import command_functions
@click.group()
@click.version_option(version=_version.get_versions()["version"])
def _main() -> None:
pass
for command in command_functions:
_main.add_command(command)
_main()
|