You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
213 B
10 lines
213 B
from .bottle_svr import BottleServer
|
|
|
|
|
|
def start_server(start_thread=False):
|
|
print("server start")
|
|
return BottleServer(start_thread=start_thread, root="web")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
start_server()
|