stonecqrs/sonar-project.properties
Rene Nochebuena 3d2e5ec027
Some checks failed
Go CI/CD / go-ci (push) Has been cancelled
Add Dispatcher implementation for CQRS pattern
Introduced a Dispatcher to manage command, query, and event handlers in a thread-safe manner utilizing read-write mutexes. This includes handler registration and dispatching logic, error handling for unregistered handlers, and support for concurrent operations. Added comprehensive tests for handler registration, dispatching, and error scenarios.
2025-04-13 00:59:18 -06:00

10 lines
320 B
INI

sonar.projectKey=f33dd35c-308c-4f08-ace2-6449efc238e9
sonar.projectName=stone-utils/stonecqrs
sonar.language=go
sonar.sources=.
sonar.exclusions=**/*_test.go
sonar.tests=.
sonar.test.inclusions=**/*_test.go
sonar.go.tests.reportPaths=test-report.out
sonar.go.coverage.reportPaths=coverage.out
sonar.qualitygate.wait=true