tg-bot/src/handlers/test.ts

10 lines
212 B
TypeScript
Raw Normal View History

2024-11-29 12:34:11 +03:00
import { Context } from 'telegraf'
2024-11-29 12:47:25 +03:00
// export const testHandler = (ctx: Context) => {
// console.log('Test handler:', ctx)
// }
export function testHandler (ctx: Context) {
2024-11-29 12:34:11 +03:00
console.log('Test handler:', ctx)
}