ranger/orm/services/customer_manager/cms_rest/controllers/v1/orm/root.py

15 lines
411 B
Python
Executable File

from ..orm.configuration import ConfigurationController
from ..orm.customer.root import CustomerController
from ..orm.group.root import GroupController
from ..orm.logs import LogsController
from pecan.rest import RestController
class OrmController(RestController):
configuration = ConfigurationController()
customers = CustomerController()
groups = GroupController()
logs = LogsController()