Skip to content

Bali DI for Scala 0.2.0

Compare
Choose a tag to compare
@christian-schlichtherle christian-schlichtherle released this 18 Apr 15:48
· 70 commits to main since this release

This release adds elementary support for the @Module and @Lookup annotations.
So now you can do:

@bali.Module
trait Clock {

    def now: java.util.Date
}

val clock = bali.scala.make[Clock]

println("Now it's " + clock.now)