├── .githooks └── pre-commit ├── .gitignore ├── LICENSE └── README.md /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesstechnology/cqrs-demo/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .idea 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesstechnology/cqrs-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesstechnology/cqrs-demo/HEAD/README.md --------------------------------------------------------------------------------