mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 03:09:14 +08:00
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
/**
|
|
* 缓存过期时间
|
|
*/
|
|
import packageJSON from "../package.json"
|
|
|
|
export const TTL = 30 * 60 * 1000
|
|
/**
|
|
* 默认刷新间隔, 10 min
|
|
*/
|
|
export const Interval = 10 * 60 * 1000
|
|
|
|
export const Homepage = packageJSON.homepage
|
|
|
|
export const Version = packageJSON.version
|
|
export const Author = packageJSON.author
|