Files
immich/packages/e2e-auth-server/startup.ts
T
2026-05-11 15:39:59 -04:00

9 lines
170 B
TypeScript

import setup from './auth-server'
const teardown = await setup()
process.on('exit', () => {
teardown()
console.log('[e2e-auth-server] stopped')
process.exit(0)
})