| 39 | const APINameCtxKey ctxValue = "apiName" |
| 40 | |
| 41 | type StatsReporter interface { |
| 42 | AddAPI(apiName string) |
| 43 | RemoveAPI(apiName string) |
| 44 | } |
| 45 | |
| 46 | type Activator interface { |
| 47 | Try(ctx context.Context, fn func() error) error |
no outgoing calls
no test coverage detected