Join Slack
Powered by
By the way, when you are binding a class to itself...
# kodein
s
salomonbrys
06/27/2017, 8:43 AM
By the way, when you are binding a class to itself e.g.:
Copy code
bind<Foo>() with singleton { Foo() }`
You can use
bind() from
instead:
Copy code
bind() from singleton { Foo() }`
Open in Slack
Previous
Next