export const ROLES = {
    TRAINER: "trainer",
    LEARNER: "learner",
} as const;

export type Role = typeof ROLES[keyof typeof ROLES];
