feat: 增加超时时间

This commit is contained in:
余泓铮
2025-07-17 14:46:50 +08:00
parent dd52ecbe6a
commit f7a4ac6050

View File

@@ -419,7 +419,7 @@ func (w *WingsService) callWingsAPI(ctx context.Context, request WingsActionRequ
// Execute HTTP request
client := &http.Client{
Timeout: 30 * time.Second,
Timeout: 60 * time.Second,
}
resp, err := client.Do(httpReq)