restructure as domain-driven design architecture

This commit is contained in:
Adam Wilson
2025-05-23 13:48:29 -06:00
parent ff429365ac
commit 8bb4a473ca
30 changed files with 226 additions and 382 deletions
+3
View File
@@ -0,0 +1,3 @@
bandit
mccabe
mypy
+10
View File
@@ -0,0 +1,10 @@
# get dependencies
pip install -r ./requirements.txt
# check cyclomatic complexity
python -m mccabe --min 3 ./../src/**/*.py
# SAST (static application security testing)
bandit -r ./../src
mypy