7 lines
105 B
Python
7 lines
105 B
Python
from waitress import serve
|
|
from app import app
|
|
|
|
|
|
if __name__ == '__main__':
|
|
serve(app, port='3800')
|