
Moves unit tests from rds subdirectory to orm/tests folder Change-Id: I47bd556c7f1b801b618d8f12a624d1fcdf7c6ffe
9 lines
187 B
Python
9 lines
187 B
Python
"""controller moudle."""
|
|
from orm.services.resource_distributor.rds.controllers.v1 import root as v1
|
|
|
|
|
|
class RootController(object):
|
|
"""api controller."""
|
|
|
|
v1 = v1.V1Controller()
|