You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
2 years ago
|
# -*- coding: utf8 -*-
|
||
|
# Общественное достояние 2023, Алексей Безбородов (Alexei Bezborodov) <AlexeiBv+mirocod_platform_bot@narod.ru>
|
||
|
|
||
|
# Профиль пользователя
|
||
|
|
||
|
from bot_sys import bot_bd, log, config, keyboard
|
||
|
from bot_modules import start
|
||
|
from aiogram import Bot, types
|
||
|
|
||
|
import sqlite3
|
||
|
|
||
|
from aiogram.dispatcher import Dispatcher
|
||
|
|
||
|
bot = Bot(token=config.GetTelegramBotApiToken(), parse_mode=types.ParseMode.HTML)
|
||
|
|
||
|
# ---------------------------------------------------------
|
||
|
# БД
|
||
|
init_bd_cmds = []
|
||
|
|
||
|
# ---------------------------------------------------------
|
||
|
# Сообщения
|
||
|
|
||
|
# ---------------------------------------------------------
|
||
|
# Работа с кнопками
|
||
|
|
||
|
# ---------------------------------------------------------
|
||
|
# Обработка сообщений
|
||
|
|
||
|
# ---------------------------------------------------------
|
||
|
# Работа с базой данных
|
||
|
|
||
|
|
||
|
# ---------------------------------------------------------
|
||
|
# API
|
||
|
|
||
|
def GetUserAccess(a_UserID):
|
||
|
return None
|
||
|
|
||
|
# Инициализация БД
|
||
|
def GetInitBDCommands():
|
||
|
return init_bd_cmds
|
||
|
|
||
|
# Доступные кнопки
|
||
|
def GetButtonNames(a_UserAccess):
|
||
|
return []
|
||
|
|
||
|
# Обработка кнопок
|
||
|
def RegisterHandlers(dp : Dispatcher):
|
||
|
return
|