```class GetAllCharactersCase(private val api: Ric...
# arrow
c
Copy code
class GetAllCharactersCase(private val api: RickMortyApi) {
    fun execute(): Try<CharacterList> =
        api.allCharacter
            .unsafeRunSync()
            .unwrapBody(Try.applicativeError())
            .fix()
}