import { cacheLife } from 'next/cache' import { setTimeout } from 'timers/promises' export async function uncachedIO() { await setTimeout(0) } export async function cachedDelay(key: any) { 'use cache' cacheLife('minutes') await setTimeout(1) } export function DebugRenderKind() { const { workUnitAsyncStorage } = require('next/dist/server/app-render/work-unit-async-storage.external') as typeof import('next/dist/server/app-render/work-unit-async-storage.external') const workUnitStore = workUnitAsyncStorage.getStore()! return (