export class GetMangaCollection { constructor(mangaRepository) { this.mangaRepository = mangaRepository; } async execute(page = 1) { return await this.mangaRepository.getMangaCollection(page); } }