10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import { Context } from 'telegraf'
|
|
|
|
// export const testHandler = (ctx: Context) => {
|
|
// console.log('Test handler:', ctx)
|
|
// }
|
|
|
|
export function testHandler (ctx: Context) {
|
|
console.log('Test handler:', ctx)
|
|
}
|