Skip to content

Instantly share code, notes, and snippets.

@sullivan-
Created December 15, 2014 18:04
Show Gist options
  • Save sullivan-/c96ea7724629adf1cc3d to your computer and use it in GitHub Desktop.
Save sullivan-/c96ea7724629adf1cc3d to your computer and use it in GitHub Desktop.
trait AuthServComponent {
val authServ: AuthServ
}
trait AuthServComponentImpl extends AuthServComponent {
self: AuthRepoComponent => // this is the self-type
val authServ: AuthServ = new AuthServ(authRepo)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment