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:
@@ -11,6 +11,6 @@
|
||||
# ║ ║
|
||||
# ╚══════════════════════════════════════════════════════════════════╝
|
||||
|
||||
from .hexahost import HexaHost
|
||||
from .axiom import Axiom
|
||||
from .Context import Context
|
||||
from .Cog import Cog
|
||||
@@ -34,7 +34,7 @@ extensions: List[str] = [
|
||||
"cogs"
|
||||
]
|
||||
|
||||
class HexaHost(commands.AutoShardedBot):
|
||||
class Axiom(commands.AutoShardedBot):
|
||||
def __init__(self, *arg, **kwargs):
|
||||
intents = discord.Intents.all()
|
||||
intents.presences = True
|
||||
@@ -141,5 +141,5 @@ class HexaHost(commands.AutoShardedBot):
|
||||
|
||||
def setup_bot():
|
||||
intents = discord.Intents.all()
|
||||
bot = HexaHost(intents=intents)
|
||||
bot = Axiom(intents=intents)
|
||||
return bot
|
||||
Reference in New Issue
Block a user