Update project configuration files, and API routes accordingly. Add SQLite runtime file ignores to .gitignore for better file management.
This commit is contained in:
33
bot/cogs/hexahost/general.py
Normal file
33
bot/cogs/hexahost/general.py
Normal file
@@ -0,0 +1,33 @@
|
||||
# ╔══════════════════════════════════════════════════════════════════╗
|
||||
# ║ ║
|
||||
# ║ +-+-+-+-+-+-+-+-+ ║
|
||||
# ║ |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 ZMODULE
|
||||
from discord.ext import commands
|
||||
|
||||
|
||||
class _general(commands.Cog):
|
||||
def __init__(self, bot):
|
||||
self.bot = bot
|
||||
|
||||
"""General commands"""
|
||||
|
||||
def help_custom(self):
|
||||
emoji = ZMODULE
|
||||
label = "General Commands"
|
||||
description = "Show you Commands of General"
|
||||
return emoji, label, description
|
||||
|
||||
@commands.group()
|
||||
async def __General__(self, ctx: commands.Context):
|
||||
"""`status` , `afk` , `avatar` , `banner` , `servericon` , `membercount` , `poll` , `users` , `urban` , `rickroll` , `hash` , `snipe` , `users` , `list boosters` , `list inrole` , `list emojis` , `list bots` , `list admins` , `list invoice` , `list mods` , `list early` , `list activedeveloper` , `list createpos` , `list roles` , `calculator`"""
|
||||
Reference in New Issue
Block a user