mirror of
https://github.com/langgenius/dify.git
synced 2025-12-01 13:29:01 +00:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
8 lines
199 B
Bash
Executable File
8 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
for pattern in "Base" "TypeBase"; do
|
|
printf "%s " "$pattern"
|
|
grep "($pattern):" -r --include='*.py' --exclude-dir=".venv" --exclude-dir="tests" . | wc -l
|
|
done
|