Source is a thing that can yield fragments
| 10 | |
| 11 | // Source is a thing that can yield fragments |
| 12 | type Source interface { |
| 13 | // Fragments provides a filepath.WalkDir like interface for scanning the |
| 14 | // fragments in the source |
| 15 | Fragments(ctx context.Context, yield FragmentsFunc) error |
| 16 | } |