9 lines
109 B
Python
9 lines
109 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
from waitress import serve
|
||
|
|
||
|
import slider
|
||
|
|
||
|
serve(slider.app, host="0.0.0.0", port=8080)
|
||
|
|