Created
July 30, 2018 17:30
-
-
Save JorgeCastilloPrz/a58d9bee64f26b86d2d2d31b042ae9e5 to your computer and use it in GitHub Desktop.
PolymorphicDataSource.kt
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 DataSource<F> { | |
fun allTasksByUser(user: User): Kind<F, List<Task>> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment