| 3 | import "context" |
| 4 | |
| 5 | type adminClient struct { |
| 6 | address []string |
| 7 | } |
| 8 | |
| 9 | func (a *adminClient) Info(ctx context.Context) (*Info, error) { |
| 10 | return callHttp[Info](ctx, a.address, "GET", "/system/info", nil) |
nothing calls this directly
no outgoing calls
no test coverage detected