Skip to content

Instantly share code, notes, and snippets.

@brianhsu
Created April 8, 2018 02:23
Show Gist options
  • Save brianhsu/7fef6a3dbe804335abc945ae73ff4cbe to your computer and use it in GitHub Desktop.
Save brianhsu/7fef6a3dbe804335abc945ae73ff4cbe to your computer and use it in GitHub Desktop.
trait UseCase[T] {
def execute(): T
def validate(): Option[ValidationError]
def journal: Option[Journal]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment