import { Maybe } from '@typed/maybe' export function getEnvVar(key: string): Maybe { return Maybe.of(process.env[key]) }