export const fetchStudentStatistics = async (): Promise<StudentsStatistics> => {
  const response =
    await CourseAPI.statistics.course.fetchAllStudentStatistics();

  return response.data;