mirror of
https://github.com/wukko/cobalt.git
synced 2025-03-25 18:54:53 +01:00
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
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;
|