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.
Some checks failed
CI / Bot (Python) (push) Failing after 12s
CI / Dashboard (Next.js) (push) Failing after 9s

This commit is contained in:
TheOnlyMace
2026-07-21 19:45:07 +02:00
parent 03c8f2ec2c
commit daf3338382
84 changed files with 238 additions and 236 deletions

View File

@@ -0,0 +1,78 @@
# ╔══════════════════════════════════════════════════════════════════╗
# ║ ║
# ║ +-+-+-+-+-+-+-+-+ ║
# ║ |H|e|x|a|H|o|s|t| ║
# ║ +-+-+-+-+-+-+-+-+ ║
# ║ ║
# ║ © 2026 HexaHost — All Rights Reserved ║
# ║ ║
# ║ discord ── https://discord.gg/hexahost ║
# ║ github ── https://github.com/theoneandonlymace ║
# ║ ║
# ╚══════════════════════════════════════════════════════════════════╝
import discord
from utils.emoji import LOCK
from discord.ext import commands
class _encrypt(commands.Cog):
def __init__(self, bot):
self.bot = bot
def help_custom(self):
emoji = LOCK
label = "Encryption Commands"
description = "Encode & decode text in various formats"
return emoji, label, description
@commands.group(name="encryption", aliases=["encrypt"], invoke_without_command=True)
async def _Encryption(self, ctx: commands.Context):
"""Show all available encryption commands"""
embed = discord.Embed(
title="Encryption Commands",
description=f"Use `{ctx.prefix}encode <type>` to encode text, `{ctx.prefix}decode <type>` to decode.",
color=0x000000,
)
embed.add_field(
name="📝 Encode Commands",
value=f"""
`{ctx.prefix}encode base32` / `{ctx.prefix}encode b32` - Encode to base32
`{ctx.prefix}encode base64` / `{ctx.prefix}encode b64` - Encode to base64
`{ctx.prefix}encode rot13` / `{ctx.prefix}encode r13` - Encode to rot13
`{ctx.prefix}encode hex` - Encode to hex
`{ctx.prefix}encode base85` / `{ctx.prefix}encode b85` - Encode to base85
`{ctx.prefix}encode ascii85` / `{ctx.prefix}encode a85` - Encode to ASCII85
""",
inline=False,
)
embed.add_field(
name="📄 Decode Commands",
value=f"""
`{ctx.prefix}decode base32` / `{ctx.prefix}decode b32` - Decode from base32
`{ctx.prefix}decode base64` / `{ctx.prefix}decode b64` - Decode from base64
`{ctx.prefix}decode rot13` / `{ctx.prefix}decode r13` - Decode from rot13
`{ctx.prefix}decode hex` - Decode from hex
`{ctx.prefix}decode base85` / `{ctx.prefix}decode b85` - Decode from base85
`{ctx.prefix}decode ascii85` / `{ctx.prefix}decode a85` - Decode from ASCII85
""",
inline=False,
)
embed.add_field(
name="🔐 Utility",
value=f"`{ctx.prefix}password` - Generate a random secure password (sent via DM)",
inline=False,
)
embed.set_footer(
text="Use encode/decode commands to encrypt or decrypt your text"
)
await ctx.reply(embed=embed)
async def setup(bot):
await bot.add_cog(_encrypt(bot))