Skip to content

Instantly share code, notes, and snippets.

@bgrebennikov
Created April 17, 2023 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bgrebennikov/0b11c551a3c0790388b587e6597d2287 to your computer and use it in GitHub Desktop.
Save bgrebennikov/0b11c551a3c0790388b587e6597d2287 to your computer and use it in GitHub Desktop.
package com.bgrebennikovv.github.wsexample.repositories
interface ChatRepository {
suspend fun sendMessage(message: String)
suspend fun receiveMessage(message: (String) -> Unit)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment