7 lines
125 B
Python
7 lines
125 B
Python
# -*- coding: utf-8 -*-
|
|
from dmweb import create_app
|
|
|
|
app = create_app()
|
|
app.run(host='0.0.0.0', debug=True, threaded=True)
|
|
|