Merge "add missing dist files ignored by .gitignore"
[releng.git] / utils / test / testapi / opnfv_testapi / resources / ui_handlers.py
1 from opnfv_testapi.resources.handlers import GenericApiHandler
2 from opnfv_testapi.common import config
3
4
5 class UIHandler(GenericApiHandler):
6
7     def get_template_path(self):
8         return config.Config().static_path
9
10     def get(self):
11         self.render('testapi-ui/index.html')