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