Spaces:
Running
Running
Update akn/manage/callback.py
Browse files- akn/manage/callback.py +5 -1
akn/manage/callback.py
CHANGED
@@ -22,6 +22,7 @@ from pyrogram import __version__ as pyro
|
|
22 |
from akn.manage.parameter import *
|
23 |
from akn.utils.database import db as db_client
|
24 |
from config import *
|
|
|
25 |
|
26 |
from box import Box
|
27 |
|
@@ -379,11 +380,14 @@ Welcome to Akn-userbot
|
|
379 |
@ren.on_callback_query(filters.regex("^tutorial_gemini$"))
|
380 |
async def tutor_gemini_clone(_, cb: CallbackQuery):
|
381 |
user_id = cb.from_user.id
|
382 |
-
|
|
|
383 |
<b> Tutorial bot token clone</b>
|
384 |
|
385 |
• <b>Gemini Bot</b>
|
386 |
|
|
|
|
|
387 |
- original : @chatbot_online_bot
|
388 |
|
389 |
It only takes a few minutes to activate your own unique bot with 0 coding:
|
|
|
22 |
from akn.manage.parameter import *
|
23 |
from akn.utils.database import db as db_client
|
24 |
from config import *
|
25 |
+
from akn import gemini_bot_id
|
26 |
|
27 |
from box import Box
|
28 |
|
|
|
380 |
@ren.on_callback_query(filters.regex("^tutorial_gemini$"))
|
381 |
async def tutor_gemini_clone(_, cb: CallbackQuery):
|
382 |
user_id = cb.from_user.id
|
383 |
+
users_bot = len(gemini_bot_id)
|
384 |
+
check_tutorial = f"""
|
385 |
<b> Tutorial bot token clone</b>
|
386 |
|
387 |
• <b>Gemini Bot</b>
|
388 |
|
389 |
+
- Users Bot: {users_bot}
|
390 |
+
|
391 |
- original : @chatbot_online_bot
|
392 |
|
393 |
It only takes a few minutes to activate your own unique bot with 0 coding:
|