add: remove secret strings
This commit is contained in:
16
app.py
Normal file
16
app.py
Normal file
@@ -0,0 +1,16 @@
|
||||
import threading
|
||||
|
||||
from mcp_service import start_mcp
|
||||
from api_service import start_api
|
||||
|
||||
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
t_mcp = threading.Thread(target=start_mcp, daemon=True)
|
||||
t_api = threading.Thread(target=start_api, daemon=True)
|
||||
t_mcp.start()
|
||||
t_api.start()
|
||||
t_mcp.join()
|
||||
t_api.join()
|
||||
|
||||
Reference in New Issue
Block a user