diff options
Diffstat (limited to 'libpathod/app.py')
-rw-r--r-- | libpathod/app.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpathod/app.py b/libpathod/app.py index 3e851477..0db31ae5 100644 --- a/libpathod/app.py +++ b/libpathod/app.py @@ -69,6 +69,11 @@ def docs_pathoc(): return render("docs_pathoc.html", True, section="docs") +@app.route('/docs/libpathod') +def docs_libpathod(): + return render("docs_libpathod.html", True, section="docs") + + @app.route('/docs/test') def docs_test(): return render("docs_test.html", True, section="docs") |