This commit is contained in:
2026-03-15 04:54:51 +01:00
parent 0fb8fe5a66
commit 7ac487f640
81 changed files with 3867 additions and 0 deletions

10
lib/validation.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
validation_require_file() {
local file_path="$1"
if [[ ! -f "$file_path" ]]; then
ui_error "Fichier requis manquant : $file_path"
exit 1
fi
}