Skip to content

Instantly share code, notes, and snippets.

@dariathecracker
Last active June 4, 2020 12:08
Show Gist options
  • Save dariathecracker/6d70967bfb4d014a7c5932ea7afa1079 to your computer and use it in GitHub Desktop.
Save dariathecracker/6d70967bfb4d014a7c5932ea7afa1079 to your computer and use it in GitHub Desktop.
Define live implementation
package ioleo.tictactoe.parser
import ioleo.tictactoe.domain.MenuCommand
import zio.UIO
trait MenuCommandParserLive extends MenuCommandParser {
val menuCommandParser = new MenuCommandParser.Service[Any] {
def parse(input: String): UIO[MenuCommand] = ???
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment