tokmesh-cli 0.1.1

CLI and TUI for tokmesh — AI token usage analytics
Documentation
1
2
3
4
pub(crate) fn looks_like_email(value: &str) -> bool {
    let trimmed = value.trim();
    trimmed.contains('@') && trimmed.split('@').count() == 2
}