blob: d907f641643c6c6683c50aeef043fcbf4e02ad1c [file] [log] [blame]
package com.airbnb.lottie.sample.compose.api
import retrofit2.http.GET
interface LottieFilesApi {
@GET("v2/featured")
suspend fun getFeatured(): FeaturedAnimationsResponse
}