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

7 lines
208 B
TypeScript
Raw Normal View History

2025-03-03 04:22:36 +00:00
import { httpPostInterceptor } from "../http-config/http-interceptor-prod-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
}