export type Session = {
    id: string;
    userId: string;
    sessionId: string;
    createdAt?: Date;
    updatedAt?: Date;
};
