mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 07:34:45 +02:00
5 lines
233 B
TypeScript
5 lines
233 B
TypeScript
import { Allocation } from '@/api/server/getServer';
|
|
import http from '@/api/http';
|
|
|
|
export default async (uuid: string, id: number): Promise<Allocation> => await http.delete(`/api/client/servers/${uuid}/network/allocations/${id}`);
|