archive
/
actioner
Archived
1
Fork 0

Move entrypoint

This commit is contained in:
Jake Howard 2019-02-14 13:45:46 +00:00
parent f5dd44a997
commit bc84c3f324
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 7 additions and 2 deletions

View File

@ -12,7 +12,7 @@ isort = "*"
python_version = "3.5"
[scripts]
start = "python3 actioner/__main__.py"
start = "python3 actioner/main.py"
test-fix = "bash ./scripts/test-fix.sh"
test = "bash ./scripts/test.sh"

View File

@ -1 +0,0 @@
print("Main")

6
actioner/main.py Normal file
View File

@ -0,0 +1,6 @@
def main():
print("Main")
if __name__ == '__main__':
main()