]> git.proxmox.com Git - ceph.git/blob - ceph/src/telemetry/server/app.wsgi
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / telemetry / server / app.wsgi
1 import sys
2 import os
3 pwd = os.path.dirname(os.path.realpath(__file__))
4 sys.path.insert(0, pwd)
5
6 from ceph_telemetry import create_app
7
8 app = create_app(__name__)
9
10 application = app