import { InMemory } from './inmemory'; import { FlatFile } from './flatfile'; import { LocalStorage } from './localstorage'; const DBFromEnv = () => { return process.env.FLATFILE_DIR ? new FlatFile({ dir: process.env.FLATFILE_DIR, }) : new InMemory(); }; export { InMemory, FlatFile, LocalStorage, DBFromEnv };