options to env handling

This commit is contained in:
2026-06-05 00:38:12 +02:00
parent 37ce941e02
commit e52763c35e
5 changed files with 90 additions and 8 deletions

3
src/cli/utils.rs Normal file
View File

@ -0,0 +1,3 @@
pub fn validate_name(name: &str) -> bool{
name.chars().all(|c| c.is_alphanumeric() || c == '_' || c == '-')
}