lecturers.ts 250 B

1234567
  1. import { httpRequest } from "../http";
  2. import { Lecturer } from "../types/lecturers";
  3. export const getLecturers = async (): Promise<Lecturer[]> => {
  4. const response = await httpRequest.get<Lecturer[]>(`/lecturers.json`);
  5. return response.data;
  6. };