b
This commit is contained in:
parent
ed1c2cebe0
commit
0a521eac33
7 changed files with 151 additions and 17 deletions
|
|
@ -1,19 +1,20 @@
|
|||
import click
|
||||
from app.api import api
|
||||
from app.scheduler import scheduler
|
||||
|
||||
|
||||
|
||||
|
||||
from app.host import host
|
||||
from app.image import image
|
||||
from app.file import file_scan
|
||||
|
||||
|
||||
@click.group()
|
||||
def entry_point():
|
||||
pass
|
||||
|
||||
|
||||
entry_point.add_command(api)
|
||||
entry_point.add_command(scheduler)
|
||||
entry_point.add_command(host)
|
||||
entry_point.add_command(image)
|
||||
entry_point.add_command(file_scan)
|
||||
|
||||
if __name__ == "__main__":
|
||||
entry_point()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue