mirror of
https://github.com/imputnet/cobalt.git
synced 2026-01-02 04:51:20 +00:00
11 lines
211 B
JavaScript
11 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;
|