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

polynote.kernel.interpreter.CoreInterpreters.scala Maven / Gradle / Ivy

The newest version!
package polynote.kernel.interpreter

import polynote.kernel.interpreter.python.PythonInterpreter
import polynote.kernel.interpreter.scal.ScalaInterpreter

class CoreInterpreters extends Loader {
  override def factories: Map[String, Interpreter.Factory] = Map(
    "scala" -> ScalaInterpreter.Factory,
    "python" -> PythonInterpreter.Factory
  )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy