()
| 426 | } |
| 427 | |
| 428 | func (a *Adapter) Metadata() types.BackendMetadata { |
| 429 | return types.BackendMetadata{ |
| 430 | Name: a.cfg.Name, |
| 431 | Type: a.cfg.Type, |
| 432 | Capabilities: a.cfg.Capabilities, |
| 433 | CostUnit: a.cfg.Cost.Unit, |
| 434 | MaxConcurrency: a.cfg.MaxConcurrency, |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | func joinURL(base, suffix string) string { |
| 439 | return strings.TrimRight(base, "/") + suffix |
nothing calls this directly
no outgoing calls
no test coverage detected