[Daisy] Add docker image tarball builder
[releng.git] / utils / test / testapi / opnfv_testapi / handlers / root_handlers.py
1 from opnfv_testapi.common.config import CONF
2 from opnfv_testapi.handlers import base_handlers
3
4
5 class RootHandler(base_handlers.GenericApiHandler):
6     def get_template_path(self):
7         return CONF.ui_static_path
8
9     def get(self):
10         self.render('testapi-ui/index.html')