Kuby/commandes/ticket.py

24 lines
624 B
Python
Raw Permalink Normal View History

"""
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
2026-01-01 18:48:25 +01:00
import os
# Add parent directory to path for imports
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
2026-01-01 18:48:25 +01:00
# Import from the new modular ticket system
from ticket import setup
2026-01-01 18:48:25 +01:00
__all__ = ["setup"]
2026-01-01 18:48:25 +01:00