Skip to content

Instantly share code, notes, and snippets.

@markchristopherng
Last active February 21, 2020 00:14
Show Gist options
  • Save markchristopherng/b866026e69d8412c34ad35e478140017 to your computer and use it in GitHub Desktop.
Save markchristopherng/b866026e69d8412c34ad35e478140017 to your computer and use it in GitHub Desktop.
@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