feat: unload - reload

This commit is contained in:
cv
2021-04-24 12:21:15 +02:00
parent ea92fc7de7
commit 75b8e9b8be
21 changed files with 151 additions and 18 deletions
+10
View File
@@ -34,3 +34,13 @@ export const getNext = async () => {
const res = axios.get(playbackURL + '/next');
return res;
};
export const getUnload = async () => {
const res = axios.get(playbackURL + '/unload');
return res;
};
export const getReload = async () => {
const res = axios.get(playbackURL + '/reload');
return res;
};