A example python code of robert martin' clean architecture
.
βββ README.md
βββ adapter
βΒ Β βββ post_adapter.py
βββ data
βΒ Β βββ in_memory_post_repository.py
βββ domain
βΒ Β βββ dto
βΒ Β βΒ Β βββ read_post.py
βΒ Β βΒ Β βββ write_post.py
βΒ Β βββ entity
βΒ Β βΒ Β βββ post.py
βΒ Β βββ exception
βΒ Β βΒ Β βββ repository.py
βΒ Β βββ interface
βΒ Β βΒ Β βββ post_repository.py
βΒ Β βββ use_case
βΒ Β βββ read_post.py
βΒ Β βββ read_posts.py
βΒ Β βββ write_post.py
βββ main.py
