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

io.taig.babel.Loader.scala Maven / Gradle / Ivy

The newest version!
package io.taig.babel

import cats.effect.kernel.Sync

abstract class Loader[F[_]] {
  def load(base: String, locales: Set[Locale]): F[Translations[Babel]]
}

object Loader {
  def default[F[_]: Sync]: Loader[F] = HoconLoader[F]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy