mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-28 05:05:19 +01:00
dcc6950af7
Signed-off-by: DQ <dengq@vmware.com>
14 lines
213 B
Python
14 lines
213 B
Python
from commands.prepare import prepare
|
|
from commands.gencerts import gencert
|
|
import click
|
|
|
|
@click.group()
|
|
def cli():
|
|
pass
|
|
|
|
cli.add_command(prepare)
|
|
cli.add_command(gencert)
|
|
|
|
if __name__ == '__main__':
|
|
cli()
|