All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gitbucket.core.plugin.Sessions.scala Maven / Gradle / Ivy

The newest version!
package gitbucket.core.plugin

import slick.jdbc.JdbcBackend.Session

/**
 * Provides Slick Session to Plug-ins.
 */
object Sessions {
  val sessions = new ThreadLocal[Session]
  implicit def session: Session = sessions.get()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy