mirror of
https://github.com/standardnotes/server
synced 2026-08-04 09:18:51 -04:00
* fix: transfer notifications from auth to syncing-server. Co-authored-by: Mo <[email protected]> * fix: add notification to data source init --------- Co-authored-by: Mo <[email protected]>
8 lines
183 B
TypeScript
8 lines
183 B
TypeScript
import { AppDataSource } from './DataSource'
|
|
import { Env } from './Env'
|
|
|
|
const env: Env = new Env()
|
|
env.load()
|
|
|
|
export const MigrationsDataSource = new AppDataSource(env).dataSource
|