Mercurial
view benchmark/bun-http-framework-benchmark/dev/nest-node/src/app.module.ts @ 240:c345083cd8a7
[mrjunejune] Show star animation in light mode
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 03 Aug 2026 10:48:59 -0700 |
| parents | a8976a008a9d |
| children |
line wrap: on
line source
import { Module } from '@nestjs/common'; import { AppController } from './app.controller'; import { AppService } from './app.service'; @Module({ imports: [], controllers: [AppController], providers: [AppService], }) export class AppModule {}