Refactor project branding from HexaHost to Axiom across all configurations, documentation, and code files. Update environment variables, Docker setup, and README to reflect the new brand name. Ensure consistency in naming conventions and improve clarity in setup instructions.
This commit is contained in:
@@ -15,7 +15,7 @@ from __future__ import annotations
|
||||
|
||||
from colorama import Fore, Style
|
||||
|
||||
from core import HexaHost
|
||||
from core import Axiom
|
||||
from utils.config import BotName
|
||||
|
||||
from .commands.help import Help
|
||||
@@ -94,34 +94,34 @@ from .events.autoreact import AutoReactListener
|
||||
from .events.ai import AIResponses
|
||||
from .events.stickymessage import StickyMessageListener
|
||||
|
||||
from .hexahost.antinuke import _antinuke
|
||||
from .hexahost.extra import _extra
|
||||
from .hexahost.general import _general
|
||||
from .hexahost.automod import _automod
|
||||
from .hexahost.moderation import _moderation
|
||||
from .hexahost.music import _music
|
||||
from .hexahost.fun import _fun
|
||||
from .hexahost.games import _games
|
||||
from .hexahost.ignore import _ignore
|
||||
from .hexahost.server import _server
|
||||
from .hexahost.voice import _voice
|
||||
from .hexahost.welcome import _welcome
|
||||
from .hexahost.giveaway import _giveaway
|
||||
from .hexahost.ticket import _ticket
|
||||
from .hexahost.logging import _logging
|
||||
from .hexahost.vanity import _vanity
|
||||
from .hexahost.inviteTracker import inviteTracker
|
||||
from .hexahost.counting import _Counting
|
||||
from .hexahost.j2c import _J2C
|
||||
from .hexahost.ai import _ai
|
||||
from .hexahost.booster import __boost
|
||||
from .hexahost.leveling import _leveling
|
||||
from .hexahost.sticky import _sticky
|
||||
from .hexahost.verify import _verify
|
||||
from .hexahost.encryption import _encrypt
|
||||
from .hexahost.mc import _mc
|
||||
from .hexahost.joindm import _joindm
|
||||
from .hexahost.birth import _birth
|
||||
from .axiom.antinuke import _antinuke
|
||||
from .axiom.extra import _extra
|
||||
from .axiom.general import _general
|
||||
from .axiom.automod import _automod
|
||||
from .axiom.moderation import _moderation
|
||||
from .axiom.music import _music
|
||||
from .axiom.fun import _fun
|
||||
from .axiom.games import _games
|
||||
from .axiom.ignore import _ignore
|
||||
from .axiom.server import _server
|
||||
from .axiom.voice import _voice
|
||||
from .axiom.welcome import _welcome
|
||||
from .axiom.giveaway import _giveaway
|
||||
from .axiom.ticket import _ticket
|
||||
from .axiom.logging import _logging
|
||||
from .axiom.vanity import _vanity
|
||||
from .axiom.inviteTracker import inviteTracker
|
||||
from .axiom.counting import _Counting
|
||||
from .axiom.j2c import _J2C
|
||||
from .axiom.ai import _ai
|
||||
from .axiom.booster import __boost
|
||||
from .axiom.leveling import _leveling
|
||||
from .axiom.sticky import _sticky
|
||||
from .axiom.verify import _verify
|
||||
from .axiom.encryption import _encrypt
|
||||
from .axiom.mc import _mc
|
||||
from .axiom.joindm import _joindm
|
||||
from .axiom.birth import _birth
|
||||
|
||||
from .antinuke.anti_member_update import AntiMemberUpdate
|
||||
from .antinuke.antiban import AntiBan
|
||||
@@ -191,7 +191,7 @@ COG_CLASSES: tuple[type, ...] = (
|
||||
)
|
||||
|
||||
|
||||
async def setup(bot: HexaHost) -> None:
|
||||
async def setup(bot: Axiom) -> None:
|
||||
for cog_cls in COG_CLASSES:
|
||||
await bot.add_cog(cog_cls(bot))
|
||||
print(Fore.RED + Style.BRIGHT + f"Loaded cog: {cog_cls.__name__}")
|
||||
|
||||
Reference in New Issue
Block a user