import { type CacheTime, 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 set: DataCache["set"] = async ( _key: string, _data: T, _ttl: CacheTime ): Promise => { console.warn("UnstableCache.set is not implemented, use cacheOrGet") }