mirror of
https://github.com/Lilac-Rose/Lacie.git
synced 2026-07-21 18:11:43 -05:00
7 lines
352 B
Python
7 lines
352 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") |