Duplicated from KenjieDec/RemBG
cc38472
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)