kanboard-api/go.mod
Oliver Jakoubek 527d27b73f Implement global task search with parallel execution
- SearchTasksGlobally: cross-project search using errgroup
- Gets all projects, then searches each in parallel
- Results aggregated from all accessible projects
- Context cancellation propagates to all goroutines
- Single project failure cancels remaining searches
- Added golang.org/x/sync/errgroup dependency
- Comprehensive test coverage
2026-01-15 18:40:14 +01:00

5 lines
114 B
Modula-2

module code.beautifulmachines.dev/jakoubek/kanboard-api
go 1.25.5
require golang.org/x/sync v0.19.0 // indirect