import { Course } from "@/data"; import { sampleCourse } from "@/provider/dummy"; import { axios } from "@/api"; import { EditionDTO, editionDtoTransformer } from "@/api/dto/edition"; const COURSE_INDEX_ENDPOINT = "/management/course"; export async function all(): Promise { const response = await axios.get(COURSE_INDEX_ENDPOINT); return response.data; }