dify/web/app/(commonLayout)/plugins/test/card/actions.ts
2024-10-10 17:47:04 +08:00

10 lines
227 B
TypeScript

'use server'
import { revalidatePath } from 'next/cache'
// Server Actions
export async function handleDelete() {
// revalidatePath only invalidates the cache when the included path is next visited.
revalidatePath('/')
}