advent-of-code

Entries to advent of code, multiple years
git clone git://git.finwo.net/misc/advent-of-code
Log | Files | Refs

app.ts (177B)


      1 import { Service } from 'typedi';
      2 
      3 import { BingoModule } from './bingo/bingo.module';
      4 
      5 @Service()
      6 export class AppModule {
      7   constructor(
      8     bingoModule: BingoModule
      9   ) {}
     10 }