Created
January 23, 2019 20:38
-
-
Save robhinds/7f37681bffcce6f39e0f0b9a93f89535 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
sealed trait IndexAlg[A] | |
case class CreateIndex(name: String) extends IndexAlg[Either[String, CreateIndexResponse]] | |
case class DeleteIndex(name: String) extends IndexAlg[Either[String, DeleteIndexResponse]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment