(ctx context.Context)
| 23 | // PredicateGenerator interface for generating VSA predicates |
| 24 | type PredicateGenerator[T any] interface { |
| 25 | GeneratePredicate(ctx context.Context) (T, error) |
| 26 | } |
| 27 | |
| 28 | // PredicateWriter interface for writing VSA predicates to files |
no outgoing calls
no test coverage detected