import type { DataCache } from "@/services/dataCache/Cache" /** * This function is not implemented for unstable_cache due to underlying cache implementation. * @see cacheOrGet * @param _key * @returns */ export const get: DataCache["get"] = async ( _key: string ): Promise => { console.warn("UnstableCache.get is not implemented, use cacheOrGet") return undefined }