Migration vers Disnake et ajout des components V2

This commit is contained in:
Mathis 2026-05-09 18:42:42 +02:00
parent c8c579eefe
commit 98f7501e07
47 changed files with 1196 additions and 722 deletions

23
commandes/ticket.py.old Normal file
View file

@ -0,0 +1,23 @@
"""
Legacy Ticket Module
====================
This file now serves as a compatibility wrapper for the new modular ticket system.
The main implementation has been moved to the 'commandes/ticket' package.
To use the new modular system, import from the ticket package:
from commandes.ticket import Ticket
Or use the setup function directly:
from commandes.ticket import setup
"""
import sys
import os
# Add parent directory to path for imports
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
# Import from the new modular ticket system
from ticket import setup
__all__ = ["setup"]