pub fn parse_env_line(line: &str) -> Option<(&str, &str)>Expand description
Parse a single .env line into a (key, value) pair.
Returns None for blank lines, comments, and lines without =.
Handles: export prefix, double/single quotes, values with =.