HTTPGet get 请求
(uri string)
| 32 | |
| 33 | // HTTPGet get 请求 |
| 34 | func HTTPGet(uri string) ([]byte, error) { |
| 35 | return HTTPGetContext(context.Background(), uri) |
| 36 | } |
| 37 | |
| 38 | // HTTPGetContext get 请求 |
| 39 | func HTTPGetContext(ctx context.Context, uri string) ([]byte, error) { |
no test coverage detected
searching dependent graphs…