Première version non terminer du nouveau système de ticket § ajout du système de boutons persistant (non tester)
This commit is contained in:
parent
10173132a2
commit
93e2f9bb44
15 changed files with 3788 additions and 209 deletions
29
commandes/ticket/data/__init__.py
Normal file
29
commandes/ticket/data/__init__.py
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
"""
|
||||
Ticket Data Module
|
||||
==================
|
||||
Data management for the ticket system.
|
||||
"""
|
||||
from .models import (
|
||||
TicketStatus,
|
||||
Priority,
|
||||
TicketCategory,
|
||||
TicketMessage,
|
||||
TicketData,
|
||||
TicketStats,
|
||||
GuildTicketConfig
|
||||
)
|
||||
from .storage import TicketStorage, get_storage, reset_storage
|
||||
|
||||
__all__ = [
|
||||
"TicketStatus",
|
||||
"Priority",
|
||||
"TicketCategory",
|
||||
"TicketMessage",
|
||||
"TicketData",
|
||||
"TicketStats",
|
||||
"GuildTicketConfig",
|
||||
"TicketStorage",
|
||||
"get_storage",
|
||||
"reset_storage",
|
||||
]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue