def get_first_movie(repo: AbstractRepository):

    article = repo.get_first_movie()

    return article_to_dict(article)
Example #2
0
def get_first_movie(repo: AbstractRepository):
    first_movie = repo.get_first_movie()

    return movie_to_dict(first_movie)