chore: redefined and connected pricers (#29)

This commit is contained in:
Daniel Alves Rösel
2025-11-29 17:44:51 +01:00
committed by GitHub
parent dd33f83e10
commit 2ed9057105
6 changed files with 212 additions and 40 deletions

View File

@@ -49,4 +49,8 @@ install: $(VENV)
test: $(VENV)
$(PYTEST) -v
count-lines:
@find . \( -path '*/node_modules' -o -path '*/.venv' -o -path '*/venv' \) -prune -o \
\( -name "*.ts" -o -name "*.py" \) -type f -print0 | xargs -0 cat | wc -l
.PHONY: all pdf clean watch run.webapp install test