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

13 lines
534 B
Python
Raw Normal View History

2023-08-29 18:13:34 +00:00
def get_all_clients_name():
2023-09-01 11:42:33 +00:00
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']
2023-09-01 11:42:33 +00:00
class Info:
version = None
subprocess = False