Created
January 3, 2017 19:58
-
-
Save rohmanhakim/003ea66a84bca35aa9aec2e3b899ab47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.rohmanhakim.androidreactivedemo; | |
import java.util.List; | |
import retrofit2.http.GET; | |
import rx.Observable; | |
public interface SampleService { | |
@GET("emails") | |
Observable<List<String>> getEmails(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment