blob: d4848746288a6a95abaa9260d1f73ddbe0cd77b9 [file] [log] [blame]
sharathb0c1f132019-04-09 19:52:09 +05301from robot.api import logger
2import time
3
4class DcaeLibrary(object):
5
6 def __init__(self):
7 pass
8
9 @staticmethod
10 def init_rcc():
11 logger.console("RestConf collector init and cleanup are done")
12 return "true"
13
14 @staticmethod
15 def teardown_rcc():
16 logger.console("RestConf collector teardown done")
17 return "true"
18
19if __name__ == '__main__':
20 time.sleep(100000)