add: remove secret strings

This commit is contained in:
h z
2025-05-23 19:44:49 +01:00
commit f96707629f
32 changed files with 597 additions and 0 deletions

16
app.py Normal file
View 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()