7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
import { createConnection } from "typeorm";
|
|
|
|
export default async () => {
|
|
const connection = await createConnection();
|
|
connection.synchronize();
|
|
return connection;
|
|
}; |