7 lines
129 B
Python
7 lines
129 B
Python
|
from tpmcqr_service import create_app
|
||
|
|
||
|
iapp = create_app()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
iapp.run(debug=True, host= '0.0.0.0')
|