File size: 290 Bytes
883ac62
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import blocking_api
# import extensions.api.streaming_api as streaming_api
# from modules import shared


def setup():
    blocking_api.start_server(7860, share=True)
    # streaming_api.start_server(shared.args.api_streaming_port, share=shared.args.public_api)
    while True: pass
setup()