bugsmith@programming.devM to Programming@programming.dev · 2 years agoWhat even is “Dependency Injection”? (a practical example using Go)medium.comexternal-linkmessage-square4linkfedilinkarrow-up118arrow-down13
arrow-up115arrow-down1external-linkWhat even is “Dependency Injection”? (a practical example using Go)medium.combugsmith@programming.devM to Programming@programming.dev · 2 years agomessage-square4linkfedilink
minus-squareLmaydev@programming.devlinkfedilinkarrow-up3·2 years agoDependency injection is the actual act of allowing dependencies to be injected. Which this does. Creating a constructor that takes dependencies is DI. Using something to inject them automatically is more inversion of control.
Dependency injection is the actual act of allowing dependencies to be injected. Which this does.
Creating a constructor that takes dependencies is DI.
Using something to inject them automatically is more inversion of control.