Advertisement
Guest User

GET_LOGIN.kt

a guest
Sep 14th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.34 KB | None | 0 0
  1. package com.joaomartins.srodkitrwale
  2.  
  3. import okhttp3.OkHttpClient
  4. import retrofit2.Call
  5. import retrofit2.Retrofit
  6. import retrofit2.converter.gson.GsonConverterFactory
  7. import retrofit2.http.GET
  8. import retrofit2.http.Header
  9. import retrofit2.http.Headers
  10.  
  11. interface GET_LOGIN {
  12.  
  13.  
  14.     @GET("login")
  15.     fun getAccessToken() : Call<String>
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement