Работа над opds

This commit is contained in:
Book Pauk
2022-11-20 19:52:10 +07:00
parent 037b42a5b4
commit aba0c206f8
4 changed files with 61 additions and 23 deletions

View File

@@ -0,0 +1,21 @@
const BasePage = require('./BasePage');
class AuthorPage extends BasePage {
constructor(config) {
super(config);
this.id = 'author';
this.title = 'Авторы';
}
async body() {
const result = {};
result.entry = [
];
return this.makeBody(result);
}
}
module.exports = AuthorPage;