MCPcopy Create free account
hub / github.com/VitoHowe/glm-coding / get_proxy_pool_sources

Function get_proxy_pool_sources

app/web/routes.py:102–112  ·  view source on GitHub ↗

读取本地代理源文件内容(默认 good_proxies.txt)。

()

Source from the content-addressed store, hash-verified

100
101@router.post("/api/accounts/{account_id}/captcha/verify")
102def submit_captcha_verify(account_id: str, payload: CaptchaVerifyPayloadRequest):
103 return success(payment_service.submit_captcha_verify(account_id, payload))
104
105
106@router.post("/api/accounts/{account_id}/captcha/solve")
107def solve_captcha(account_id: str):
108 return success(payment_service.solve_captcha(account_id))
109
110
111@router.post("/api/accounts/{account_id}/payments/preview")
112def preview_payment(account_id: str, payload: PreviewPaymentRequest):
113 return success(payment_service.preview_payment(account_id, payload))
114
115

Callers

nothing calls this directly

Calls 2

successFunction · 0.85

Tested by

no test coverage detected