helllo / test.py
bonsainoodle's picture
Adding server.zip, client.zip and versions.json
b6b5528 verified
raw
history blame contribute delete
199 Bytes
from flask import Flask
from api.routes import api_router
app = Flask(__name__)
# Register the api
app.register_blueprint(api_router)
if __name__ == "__main__":
app.run(debug=True, port=5000)