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