SimpleAES / app.py
SFM2001's picture
.
462cf11
raw
history blame
120 Bytes
from create_app import create_app
app = create_app()
if __name__ == '__main__':
app.run(host="0.0.0.0", port=7860)