mirror of
https://github.com/Lilac-Rose/Lacie.git
synced 2026-04-18 21:18:05 -05:00
8 lines
353 B
Python
8 lines
353 B
Python
from discord import app_commands
|
|
|
|
# Public XP commands: /xp rank, /xp top, /xp calculate, /xp sync
|
|
xp_group = app_commands.Group(name="xp", description="XP commands")
|
|
|
|
# Admin XP commands: /xpadmin set, /xpadmin add, /xpadmin remove, /xpadmin backup, etc.
|
|
xp_admin_group = app_commands.Group(name="xp_admin", description="Admin XP management commands")
|