feat: Reader working, some work still need to be done
This commit is contained in:
parent
33f5a5568a
commit
668702b1fb
@@ -0,0 +1,9 @@
|
||||
export class GetChapterContext {
|
||||
constructor(readerRepository) {
|
||||
this.readerRepository = readerRepository;
|
||||
}
|
||||
|
||||
async execute(chapterId) {
|
||||
return await this.readerRepository.getChapterContext(chapterId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user