Skip to content

Instantly share code, notes, and snippets.

View ferPrieto's full-sized avatar
💪
Attitute beats talent

Fernando Prieto Moyano ferPrieto

💪
Attitute beats talent
View GitHub Profile
@ferPrieto
ferPrieto / InstagramErrorContent.kt
Created June 30, 2020 00:58
This is the interface that contains the common parameters the different InstagramErrors will have
interface InstagramErrorContent {
val photoVideoUrl: String?
val tags: List<String>?
val errorCode: ErrorCode?
}
const val BASE_URL = "http://127.0.0.1"
class TestConfigurationBuilder {
private lateinit var baseUrl: String
init {
testBaseUrl()
}
fun testBaseUrl() {