Splitting into smaller files

This commit is contained in:
2025-11-27 22:15:48 +01:00
parent 4f0239de9c
commit 0ff8c4fb6a
7 changed files with 164 additions and 109 deletions
+9
View File
@@ -0,0 +1,9 @@
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes
import configparser
import json
import os
async def error(update: Update, context: ContextTypes.DEFAULT_TYPE):
await update.message.reply_text("nope")
return