Bali DI for Scala 0.2.0
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)