Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1import { fileURLToPath } from 'url';
2
3export { default as ScyllaStorage } from './storage/scyllaStorage.js';
4export { type DatabaseConfig } from './cli/typescript-types.js';
5export { makeCli } from './cli/index.js';
6export { makeSequelizeUmzugStorage, wrapMigration } from './cli/utils.js';
7
8export const SCRIPT_TEMPLATES_DIR_ABSOLUTE_PATH = fileURLToPath(
9 new URL('./script-templates', import.meta.url),
10);