Move entrypoint
This commit is contained in:
parent
f5dd44a997
commit
bc84c3f324
3 changed files with 7 additions and 2 deletions
2
Pipfile
2
Pipfile
|
@ -12,7 +12,7 @@ isort = "*"
|
||||||
python_version = "3.5"
|
python_version = "3.5"
|
||||||
|
|
||||||
[scripts]
|
[scripts]
|
||||||
start = "python3 actioner/__main__.py"
|
start = "python3 actioner/main.py"
|
||||||
test-fix = "bash ./scripts/test-fix.sh"
|
test-fix = "bash ./scripts/test-fix.sh"
|
||||||
test = "bash ./scripts/test.sh"
|
test = "bash ./scripts/test.sh"
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
print("Main")
|
|
6
actioner/main.py
Normal file
6
actioner/main.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
def main():
|
||||||
|
print("Main")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
Reference in a new issue