Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.17 KB | None | 0 0
  1. package com.example.apicoroutinestreningv1
  2.  
  3. class Repository(private val api: BrewDogApi) {
  4.  
  5.    suspend fun getBeers(): List<Beer>{
  6.       return api.getBeers().beers
  7.    }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement