5 lines
205 B
TypeScript
5 lines
205 B
TypeScript
import http from '@/api/http';
|
|
|
|
export const restoreServerBackup = async (uuid: string, backup: string): Promise<void> => {
|
|
await http.post(`/api/client/servers/${uuid}/backups/${backup}/restore`);
|
|
};
|