export interface User {
    sub: string;
    email?: string;
    name?: string;
}
