Created
March 19, 2018 06:45
-
-
Save filipproch/7cf46f5061b85d285593048013f52f91 to your computer and use it in GitHub Desktop.
This file contains 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
class MyApp : Application(), KodeinAware { | |
override val kodein: Kodein = Kodein { | |
bind<TasksRepository>() with singleton { | |
FakeTasksRepository() | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment