23 lines
624 B
Python
23 lines
624 B
Python
"""
|
|
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"]
|
|
|