# Helper functions for authentication module

def is_valid_email(email: str) -> bool:
    """Check if the string contains '@' and looks like an email."""
    return '@' in email

# Add more reusable functions here as needed
