Duplicated from fuliai/cobalt
43a06dc
1
2
3
4
5
6
7
8
9
10
11
import { env } from '../config.js'; let _export; if (env.redisURL) { _export = await import('./redis-store.js'); } else { _export = await import('./memory-store.js'); } export default _export.default;