enum Group {
  Student = 'student',
  Teacher = 'teacher',
  TA = 'ta',
};

export default Group;
