Socialify

Folder ..

Viewing index.ts
13 lines (11 loc) • 221.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import collation from './collation';
import column from './column';
import engine from './engine';
import type from './type';

const database: any = {
  collation,
  column,
  engine,
  type,
};

export default database;