Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/core/utils/info.py
2023-09-01 19:42:33 +08:00

12 lines
534 B
Python

def get_all_clients_name():
from bots.aiocqhttp.info import client_name as cq_client_name
from bots.kook.info import client_name as kook_client_name
from bots.matrix.info import client_name as matrix_client_name
from bots.discord.info import client_name as discord_client_name
from bots.aiogram.info import client_name as aiogram_client_name
return [cq_client_name, kook_client_name, matrix_client_name, discord_client_name, aiogram_client_name, 'TEST']
class Info:
version = None
subprocess = False