10 lines
143 B
Python
Executable file
10 lines
143 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
|
|
def main():
|
|
from woodwind.app import create_app
|
|
app = create_app()
|
|
app.run(debug=True, port=4000)
|
|
|
|
|
|
main()
|