import { fetchAPI } from "./api-client"; import type { TestimonialValue } from "@/types/wagtail"; /** 获取客户证言列表(apps.core.Testimonial Snippet)。 */ export async function getTestimonials(): Promise { const res = await fetchAPI<{ items: TestimonialValue[] }>( "/api/v1/custom/core/testimonials/", { tags: ["testimonials"] }, ); return res.items; }