export class GetMangaDetail { constructor(mangaRepository) { this.mangaRepository = mangaRepository; } async execute(slug) { return await this.mangaRepository.getMangaBySlug(slug); } }