Initial commit

This commit is contained in:
2019-09-25 04:39:03 +02:00
commit 74721bf744
22 changed files with 3480 additions and 0 deletions

7
src/db/repos/index.ts Normal file
View File

@@ -0,0 +1,7 @@
import { MigrationRepository } from "./migrations";
export interface Extensions {
migrations: MigrationRepository;
}
export { MigrationRepository };