mediahub-fe/service/tableau/tableau-service.ts

7 lines
203 B
TypeScript
Raw Normal View History

2025-01-01 17:48:57 +00:00
import { httpPostInterceptor } from "../http-config/http-interceptor-service";
2024-12-12 18:38:15 +00:00
export async function generateTicket() {
const url = "/admin/tableau-ticket";
2025-01-01 17:48:57 +00:00
return httpPostInterceptor(url, null);
2024-12-12 18:38:15 +00:00
}