mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-09-19 17:50:13 +00:00
11 lines
365 B
TypeScript
11 lines
365 B
TypeScript
import { ModelWAF } from "@/types"
|
|
import { fetcher, FetcherMethod } from "./api"
|
|
|
|
export const deleteWAF = async (ip: string[]): Promise<void> => {
|
|
return fetcher<void>(FetcherMethod.POST, '/api/v1/batch-delete/waf', ip);
|
|
}
|
|
|
|
export const getWAFList = async (): Promise<ModelWAF[]> => {
|
|
return fetcher<ModelWAF[]>(FetcherMethod.GET, '/api/v1/waf', null);
|
|
}
|