nestjs-telegraf/sample/01-complete-app/src/echo/echo.service.ts
2021-01-03 17:32:58 +03:00

9 lines
152 B
TypeScript

import { Injectable } from '@nestjs/common';
@Injectable()
export class EchoService {
echo(text: string): string {
return `Echo: ${text}`;
}
}