Last active
February 21, 2020 00:14
-
-
Save markchristopherng/b866026e69d8412c34ad35e478140017 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
@Singleton | |
class GreetingServiceImpl @Inject constructor(private val messageData: MessageData, private val timeService: TimeService) : | |
GreetingService { | |
@Singleton | |
class TimeServiceImpl @Inject constructor() : TimeService { | |
data class MessageData @Inject constructor(val welcomeMessage: String) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment