Skip to content

Instantly share code, notes, and snippets.

@erangaeb
Created March 4, 2016 09:35
Show Gist options
  • Save erangaeb/b5ccd360146f6082dcdd to your computer and use it in GitHub Desktop.
Save erangaeb/b5ccd360146f6082dcdd to your computer and use it in GitHub Desktop.
Database component
package components
/**
* Database component
*/
trait MsgDbComp {
val msgDb: MsgDb
trait MsgDb {
def saveMsg(msg: String)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment