Работа над opds

This commit is contained in:
Book Pauk
2022-11-24 17:50:35 +07:00
parent fd9bc45fb1
commit 8de33fbd9a
3 changed files with 95 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
const RootPage = require('./RootPage');
const AuthorPage = require('./AuthorPage');
const SeriesPage = require('./SeriesPage');
const TitlePage = require('./TitlePage');
const GenrePage = require('./GenrePage');
const BookPage = require('./BookPage');
@@ -11,6 +12,7 @@ module.exports = function(app, config) {
const root = new RootPage(config);
const author = new AuthorPage(config);
const series = new SeriesPage(config);
const title = new TitlePage(config);
const genre = new GenrePage(config);
const book = new BookPage(config);
@@ -19,6 +21,7 @@ module.exports = function(app, config) {
['/root', root],
['/author', author],
['/series', series],
['/title', title],
['/genre', genre],
['/book', book],
];