Initial setup for the project

This commit is contained in:
Joakim Persson
2024-07-15 16:53:01 +02:00
parent 7340e32ce4
commit d771951b80
16 changed files with 488 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/Users/ECSJPER/src/src_local/python_test/smartassist/smartassist_dev_env/bin/python3.12
# -*- coding: utf-8 -*-
import re
import sys
from flask.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())