add test handlers

This commit is contained in:
2024-11-29 12:34:11 +03:00
parent d76e02b33f
commit 6f416a0520
4 changed files with 14 additions and 4 deletions

5
src/handlers/test.ts Normal file
View File

@@ -0,0 +1,5 @@
import { Context } from 'telegraf'
export const testHandler = (ctx: Context) => {
console.log('Test handler:', ctx)
}