add go bench client

This commit is contained in:
Gilles Soulier
2026-01-11 23:41:30 +01:00
parent c67befc549
commit 6abc70cdfe
80 changed files with 13311 additions and 61 deletions

14
migrate_files.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Wrapper script for file migration
cd "$(dirname "$0")"
# Check if venv exists
if [ -d "backend/venv" ]; then
source backend/venv/bin/activate
elif [ -d "venv" ]; then
source venv/bin/activate
fi
# Run migration
python3 backend/migrate_file_organization.py "$@"