S SmartDocs
シリーズ: nest.js typescript 8 行 · 更新日 2026-02-03

app.service.ts

nest.js/02-intermediate/demo-intermediate/src/app.service.ts

import { Injectable } from '@nestjs/common';

@Injectable()
export class AppService {
  getHello(): string {
    return 'Hello World!';
  }
}

関連記事