1
0
mirror of https://github.com/civsocit/olgram.git synced 2025-05-24 17:13:25 +00:00
olgram/olgram/commands/info.py
2021-12-24 19:20:53 +03:00

27 lines
698 B
Python

"""
Здесь метрики
"""
from aiogram import types
from aiogram.dispatcher import FSMContext
from olgram.models import models
from olgram.router import dp
from olgram.settings import OlgramSettings
@dp.message_handler(commands=["info"], state="*")
async def info(message: types.Message, state: FSMContext):
"""
Команда /info
"""
if message.from_user.id != OlgramSettings.supervisor_id():
return
bots_count = len(await models.Bot.all())
user_count = len(await models.User.all())
await message.answer(f"Количество ботов: {bots_count}"
f"Количество пользователей: {user_count}")