Narrow interfaces
| 14 | // Narrow interfaces |
| 15 | |
| 16 | type PlanServiceGlobalDatabase interface { |
| 17 | WithTx(ctx context.Context, do func(ctx context.Context) error) error |
| 18 | ReadOnly(ctx context.Context, do func(ctx context.Context) error) error |
| 19 | } |
| 20 | |
| 21 | type PlanServicePlanStore interface { |
| 22 | GetPlan(ctx context.Context, name string) (*plan.Plan, error) |
no outgoing calls
no test coverage detected