Initiate packetization of Testing reporting
[releng.git] / utils / test / testapi / opnfv_testapi / ui / root.py
1 from opnfv_testapi.resources.handlers import GenericApiHandler
2 from opnfv_testapi.common import config
3
4
5 class RootHandler(GenericApiHandler):
6     def get_template_path(self):
7         return config.Config().static_path
8
9     def get(self):
10         self.render('testapi-ui/index.html')