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-08-30 13:56:00 +08:00

9 lines
460 B
Python

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
def get_all_clients_name():
return [cq_client_name, kook_client_name, matrix_client_name, discord_client_name, aiogram_client_name, 'TEST']