Skip to content
Snippets Groups Projects

refactor: uuid를 통해 공유할 수 있도록 변경

Merged 정원제 requested to merge refactor/share into main
7 files
+ 269
57
Compare changes
  • Side-by-side
  • Inline

Files

+ 12
0
import api from "../axios";
const createUUID = async (pcId) => {
try {
const response = await api.post(`/my/pc/${pcId}/uuid`);
return response.data.data.uuid.uuid;
} catch (error) {
throw error;
}
};
export default createUUID;
\ No newline at end of file
Loading