chore: стартует проект

This commit is contained in:
2023-09-24 11:15:54 +03:00
commit 221d872eff
12 changed files with 481 additions and 0 deletions

10
statapp/__main__.py Normal file
View File

@@ -0,0 +1,10 @@
import sys
def main():
print('hello world!')
return 0
if __name__ == "__main__":
sys.exit(main())