Skip to content

Instantly share code, notes, and snippets.

@ayushmaniac
Created August 21, 2020 19:23
Show Gist options
  • Save ayushmaniac/654df497837e1dcad73bb20e54a9441a to your computer and use it in GitHub Desktop.
Save ayushmaniac/654df497837e1dcad73bb20e54a9441a to your computer and use it in GitHub Desktop.
@Module
class PizzaStock {
@Provides
@Singleton
fun providePizzaTopping() = Topping().toppingType = "Chicken"
@Provides
@Singleton
fun providePizzaBase() = Base().pizzaBaseType = "CheeseBurst"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment