initial commit

This commit is contained in:
2021-05-18 19:15:49 +02:00
commit 6f291aa47a
6 changed files with 175 additions and 0 deletions

10
app.py Normal file
View File

@@ -0,0 +1,10 @@
import os
import os.path as op
from autoreply_editor import app
cur_dir = op.dirname(op.realpath(__file__))
if __name__ == '__main__':
# Start app
app.run(debug=True)