import { httpDeleteInterceptor } from "./http-config/http-interceptor-service";
export async function deleteUserLevel(id: number) {
const url = `user-levels/${id}`;
return await httpDeleteInterceptor(url);
}