Files
ProjectIOT/app.py
2025-04-25 17:16:05 +02:00

15 lines
278 B
Python

from application import app
from application.api.views import api_blueprint
app.register_blueprint(api_blueprint)
# Default app route
@app.route("/")
def home():
return "Hello, World!"
if __name__ == "__main__":
app.run(host="192.168.137.1", port=2222, debug=True)