Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. trait StorageService extends Plan with ScalaQuerySession {
  2. ...
  3. }
  4.  
  5. trait ScalaQuerySession extends Plan {
  6.   implicit def session: Session
  7.   def intent = {
  8.     case _ => sys.error("Need to be backed by a real plan intent")
  9.   }
  10. }