dddk_core 0.6.0

Tactical DDD framework based on command_bus, event_bus and query_bus. It offers annex feature such as authorization, logging ...
Documentation
.ONESHELL:

# @see http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
.DEFAULT_GOAL := help
.PHONY: help
help: ## provides cli help for this makefile (default) 📖
	@grep -E '^[a-zA-Z_0-9-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: start
start: ## start app ✓
	cargo run

.PHONY: build
build: ## build app ✓
	cargo build

.PHONY: clean
clean: ## clean compiled code ✓
	cargo clean

.PHONY: test
test: ## run test ✓
	cargo test