Skip to content

Instantly share code, notes, and snippets.

@jeremyrempel
Created June 29, 2019 17:53
Show Gist options
  • Select an option

  • Save jeremyrempel/e9fec39f2e085b6835c05b39a72a16a4 to your computer and use it in GitHub Desktop.

Select an option

Save jeremyrempel/e9fec39f2e085b6835c05b39a72a16a4 to your computer and use it in GitHub Desktop.
@Module
class ServiceModule {
@Provides
@Singleton
fun providesRetrofit(): Retrofit {
return Retrofit.Builder()
.baseUrl("https://api.github.com/")
.build();
}
@Provides
@Singleton
fun providesService(): GitHubService {
return retrofit.create(GitHubService.class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment