Add product command
This commit is contained in:
parent
9c10e53e7b
commit
059b5debf0
2 changed files with 57 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ from commands.vm import vm
|
|||
from commands.user import user
|
||||
from commands.host import host
|
||||
from commands.image import image
|
||||
from commands.product import product
|
||||
|
||||
|
||||
@click.group()
|
||||
|
|
@ -15,6 +16,7 @@ entry_point.add_command(vm)
|
|||
entry_point.add_command(user)
|
||||
entry_point.add_command(image)
|
||||
entry_point.add_command(host)
|
||||
entry_point.add_command(product)
|
||||
|
||||
if __name__ == "__main__":
|
||||
entry_point()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue