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/modules/ask/tools/__init__.py
2023-04-08 13:22:26 +08:00

25 lines
587 B
Python

from .search import search_tool
from .wolfram import wolfram_tool
from .ip_whois import ip_whois_tool
from .mcv import mcv_tool
from .server import server_tool
from .meme import meme_tool
from .random import random_choice_tool, random_number_tool, random_uuid_tool
from .bugtracker import bugtracker_tool
tools = [
search_tool,
wolfram_tool,
ip_whois_tool,
mcv_tool,
server_tool,
meme_tool,
random_choice_tool,
random_number_tool,
random_uuid_tool,
bugtracker_tool
]
tool_names = [tool.name for tool in tools]
__all__ = ['tools', 'tool_names']