app.ts 279 B

12345678910
  1. import { lsKey } from '@/constant';
  2. import cache from '@/utils/cache';
  3. export const getLastBuildDate = () => {
  4. return cache.getStorage<string>(lsKey.lastBuildDate);
  5. };
  6. export const setLastBuildDate = (val: string) => {
  7. return cache.setStorage(lsKey.lastBuildDate, val);
  8. };