Mercurial
view benchmark/bun-http-framework-benchmark/dev/nest-node/src/app.service.ts @ 251:117c4d53c9a4
[ui] Add HTML-first Web Component system
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Tue, 04 Aug 2026 09:14:57 -0700 |
| parents | a8976a008a9d |
| children |
line wrap: on
line source
import { Injectable } from '@nestjs/common'; @Injectable() export class AppService { getHello(): string { return 'Hi'; } getCompose(id: string, name: string): string { return `${id} ${name}`; } }