8 lines
186 B
Rust
8 lines
186 B
Rust
pub mod admin;
|
|
pub mod auth;
|
|
pub mod cdn;
|
|
pub mod crud;
|
|
|
|
pub fn is_valid_identifier(name: &str) -> bool {
|
|
!name.is_empty() && name.chars().all(|c| c.is_alphanumeric() || c == '_')
|
|
}
|