sharath | b0c1f13 | 2019-04-09 19:52:09 +0530 | [diff] [blame^] | 1 | from robot.api import logger |
2 | import time | ||||
3 | |||||
4 | class 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 | |||||
19 | if __name__ == '__main__': | ||||
20 | time.sleep(100000) |