This commit is contained in:
ahmadbilalkhalid 2019-08-27 13:31:22 +05:00
commit d51f7fcbfd
7 changed files with 153 additions and 0 deletions

19
ucloud-setup.py Normal file
View file

@ -0,0 +1,19 @@
import click
from app.api import api
from app.scheduler import scheduler
@click.group()
def entry_point():
pass
entry_point.add_command(api)
entry_point.add_command(scheduler)
if __name__ == "__main__":
entry_point()