export class GetChapterContext { constructor(readerRepository) { this.readerRepository = readerRepository; } async execute(chapterId) { return await this.readerRepository.getChapterContext(chapterId); } }