7 lines
210 B
Kotlin
Raw Normal View History

2023-02-11 23:41:23 -06:00
package com.isolaatti.utils
import com.isolaatti.connectivity.RetrofitClient.Companion.BASE_URL
object UrlGen {
fun userProfileImage(userId: Int) = "${BASE_URL}images/profile_image/of_user/1?mode=small"
}