9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
export class GetPages {
|
|
constructor(readerRepository) {
|
|
this.readerRepository = readerRepository;
|
|
}
|
|
|
|
async execute(chapterId) {
|
|
return await this.readerRepository.getPages(chapterId);
|
|
}
|
|
} |