Created
January 31, 2019 11:27
-
-
Save robhinds/2298d5f9c345e6824c99f4c3577a1785 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
trait S3DocumentRepository[Future] { | |
def documents:Future[Seq[Document]] = ??? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was a little confused when I read this in your blog post. Don't you really mean to write something like the following?