Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
249 Bytes
'use server'
import { revalidatePath } from 'next/cache'
import { countRef } from './make-query-client'
export async function queryExampleAction() {
await Promise.resolve()
countRef.current++
revalidatePath('/', 'page')
return undefined
}