Files
inpx-web/server/core/opds/AuthorPage.js
2022-11-20 19:52:10 +07:00

21 lines
358 B
JavaScript

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;