5 lines
82 B
Python
5 lines
82 B
Python
from .users import User
|
|
from .tickets import Ticket
|
|
|
|
__all__ = ["User", "Ticket"]
|