We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd2e302 commit 7cccabcCopy full SHA for 7cccabc
1 file changed
emulator.py
@@ -1,7 +1,7 @@
1
#!/usr/bin/env python2
2
#
3
# Copyright Notice:
4
-# Copyright 2016-2019 DMTF. All rights reserved.
+# Copyright 2016-2021 DMTF. All rights reserved.
5
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interface-Emulator/blob/master/LICENSE.md
6
7
# Redfish Interface Emulator - main
@@ -337,6 +337,10 @@ def reset():
337
def index():
338
return render_template('index.html')
339
340
+@g.app.route('/redfish')
341
+def serviceInfo():
342
+ return render_template('service.json')
343
+
344
@g.app.route('/browse.html')
345
def browse():
346
return render_template('browse.html')
0 commit comments