7 lines
242 B
Python
7 lines
242 B
Python
from .admins import router as admins
|
|
from .custom_pricing import router as custom_pricing
|
|
from .enrollments.scheduled import router as scheduled
|
|
from .users import router as users
|
|
|
|
__all__ = ['admins', 'custom_pricing', 'scheduled', 'users']
|