mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-25 15:34:38 +03:00
10 lines
170 B
TypeScript
10 lines
170 B
TypeScript
import { On, Update } from '../lib/decorators';
|
|
|
|
@Update()
|
|
export class AppUpdate {
|
|
@On('message')
|
|
onMessage(): void {
|
|
console.log('New message received');
|
|
}
|
|
}
|