Files
2026-03-01 14:17:59 +08:00

7 lines
142 B
TypeScript

import { TOKEN_KEY } from '@/enums/constantEnums'
import cache from './cache'
export function getToken() {
return cache.get(TOKEN_KEY)
}