Created
March 18, 2018 20:07
-
-
Save filipproch/f0874a7c4f7bfac044ea1ca1c38bb026 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
interface TasksRepository { | |
fun createNewTask(message: String) | |
fun getTasks(): List<Task> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment