-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.js
More file actions
11 lines (10 loc) · 764 Bytes
/
api.js
File metadata and controls
11 lines (10 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
import { createRoom, getCountAnggota, getCountRoom, getCountRoomSta, getListRoom, updateRoom, deleteRoom } from './api/room&anggota';
import { getListCandidate, addCandidate, getCandidate, getCandidateId, updateCandidate, deleteCandidate } from './api/candidate';
import { signinAdmin, signupAdmin, getAdmin, updateAdminPass, updateAdmin } from './api/admin';
import { getOption } from './api/option';
import { getLen } from './api/vote';
export {getLen};
export {getOption};
export {getListCandidate, addCandidate, getCandidate, getCandidateId, updateCandidate, deleteCandidate};
export {signinAdmin, signupAdmin, getAdmin, updateAdminPass, updateAdmin};
export {createRoom, getCountAnggota, getCountRoom, getCountRoomSta, getListRoom, updateRoom, deleteRoom };