Update to Node.js v24 (#10419)

This commit is contained in:
DS Boyce
2026-05-05 11:51:42 -07:00
committed by GitHub
parent cc5b215863
commit 6f4ae14f36
17 changed files with 302 additions and 160 deletions
+7 -4
View File
@@ -19,10 +19,13 @@ export class CardService {
private terminator?: HttpTerminator
private metricsTerminator?: HttpTerminator
constructor(
public app: express.Application,
public ctx: AppContext,
) {}
public app: express.Application
public ctx: AppContext
constructor(app: express.Application, ctx: AppContext) {
this.app = app
this.ctx = ctx
}
static async create(cfg: Config): Promise<CardService> {
let app = express()