Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / pybind / mgr / restful / api / doc.py
1 from pecan import expose
2 from pecan.rest import RestController
3
4 from restful import module
5
6 import restful
7
8
9 class Doc(RestController):
10     @expose(template='json')
11     def get(self, **kwargs):
12         """
13         Show documentation information
14         """
15         return module.instance.get_doc_api(restful.api.Root)