5 lines
105 B
Python
5 lines
105 B
Python
from web import new
|
|
|
|
if __name__ == "__main__":
|
|
app = new()
|
|
app.run(port=8080, host="127.0.0.1")
|