Skip to content

Instantly share code, notes, and snippets.

@erangaeb
Last active January 31, 2016 08:24
Show Gist options
  • Save erangaeb/ba3abf68a3dfa0692598 to your computer and use it in GitHub Desktop.
Save erangaeb/ba3abf68a3dfa0692598 to your computer and use it in GitHub Desktop.
Employee service component
trait EmployeeServiceComp {
val Service: EmployeeService
trait EmployeeService {
def POST(employee: Employee): Future[Unit]
def GET(id: Int): Future[Employee]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment