Skip to content

Instantly share code, notes, and snippets.

View tripleentendre's full-sized avatar
🙏

Scott Smith tripleentendre

🙏
View GitHub Profile
@tripleentendre
tripleentendre / gist:789d30907ccb9b0fa792fa84fefe4639
Last active August 17, 2017 04:19
An interactor setup for injection by Dagger 2
class LogicInteractor @Inject constructor(val dataRepository: DataRepositoryContract): LogicInteractorContract
@Binds
abstract fun providesLogicInteractor(logicInteractor: LogicInteractor): LogicInteractorContract