icebreaking / app.py
yunzi7's picture
Feat: upload project
df42f36
raw
history blame
136 Bytes
from ice_breaking_challenge import create_app
if __name__ == "__main__":
app = create_app()
app.run(host="0.0.0.0", port=7860)