Starter is an interface for starting resources.
| 35 | |
| 36 | // Starter is an interface for starting resources. |
| 37 | type Starter interface { |
| 38 | Start(ctx context.Context) error |
| 39 | } |
| 40 | |
| 41 | // CacheGetter is an interface for getting resources that are cached. |
| 42 | type CacheGetter[O any] interface { |
nothing calls this directly
no outgoing calls
no test coverage detected