fromis_9/frontend/src/api/members.js

15 lines
277 B
JavaScript
Raw Normal View History

/**
* 멤버 관련 공개 API
*/
import { fetchApi } from "./index";
// 멤버 목록 조회
export async function getMembers() {
return fetchApi("/api/members");
}
// 멤버 상세 조회
export async function getMember(id) {
return fetchApi(`/api/members/${id}`);
}