10 lines
168 B
Python
10 lines
168 B
Python
|
|
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)
|