ReadAll read and parse all local bugs
(repo repository.ClockedRepo)
| 70 | |
| 71 | // ReadAll read and parse all local bugs |
| 72 | func ReadAll(repo repository.ClockedRepo) <-chan entity.StreamedEntity[*Bug] { |
| 73 | return dag.ReadAll(def, wrapper, repo, simpleResolvers(repo)) |
| 74 | } |
| 75 | |
| 76 | // ReadAllWithResolver read and parse all local bugs |
| 77 | func ReadAllWithResolver(repo repository.ClockedRepo, resolvers entity.Resolvers) <-chan entity.StreamedEntity[*Bug] { |