mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

10 lines
274 B
TypeScript

import http from '@/api/http';
export default (identifier: string): Promise<void> => {
return new Promise((resolve, reject) => {
http.delete(`/api/client/account/api-keys/${identifier}`)
.then(() => resolve())
.catch(reject);
});
};