Spaces:
Sleeping
Sleeping
| import sys | |
| import os | |
| # chemin vers Interface Graphique | |
| path = os.path.join(os.path.dirname(__file__), "Interface Graphique") | |
| sys.path.append(path) | |
| from Interface_Graphique.app import app | |
| server = app.server | |
| if __name__ == "__main__": | |
| app.run(host="0.0.0.0", port=7860) |