10 lines
213 B
Python
10 lines
213 B
Python
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() |