mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 21:34:45 +02:00
6 lines
205 B
TypeScript
6 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`);
|
|
};
|