Permalink
Fetching contributors…
Cannot retrieve contributors at this time
13 lines (11 sloc) 384 Bytes
package com.zhuinden.simplestackexamplescoping
import com.zhuinden.simplestack.ScopedServices
class ScopeConfiguration : ScopedServices {
override fun bindServices(serviceBinder: ScopedServices.ServiceBinder) {
when (serviceBinder.scopeTag) {
WordScope.SCOPE_TAG -> {
serviceBinder.addService(WordController())
}
}
}
}