This commit is contained in:
John Wu
2022-09-27 10:29:09 -07:00
committed by GitHub
parent 39ccee54be
commit b622e42286
8 changed files with 140 additions and 33 deletions

View File

@@ -22,6 +22,10 @@ const updatesAPI = {
getCarUpdateProgress: async (carupdateids, token) => {
return { statuses: [] };
},
cancelCarUpdate: async (id, token) => {
return { message: "OK" };
},
};
export default updatesAPI;