org.jetbrains.kotlinx.jupyter.JupyterSessionProviderImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-jupyter-kernel Show documentation
Show all versions of kotlin-jupyter-kernel Show documentation
Kotlin Jupyter kernel published as artifact
package org.jetbrains.kotlinx.jupyter
import org.jetbrains.kotlinx.jupyter.api.session.JupyterSession
import org.jetbrains.kotlinx.jupyter.api.session.JupyterSessionProvider
class JupyterSessionProviderImpl : JupyterSessionProvider {
private val instance = JupyterSessionImpl()
override fun getCurrentSession(): JupyterSession {
return instance
}
private class JupyterSessionImpl : JupyterSession
}