ddd 0.1.0

Domain-Driven Design Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# `ddd` - DDD Framework

A Domain-Driven Design (DDD) framework for modeling business domains in Rust.

## Overview

This framework provides essential building blocks for implementing DDD patterns in Rust applications. It includes traits and structures for commands, events, aggregates, and more.

## Features

- **Commands**: Define actions that can be performed in the system.
- **Events**: Represent changes in the state of aggregates.
- **Aggregates**: Group related objects into a single unit for data changes.
- **Repositories**: Handle persistence and retrieval of aggregates.

## Getting Started