November 2017
Intermediate to advanced
670 pages
17h 35m
English
This is how I resolved the build errors that occurred when converting Chapter 4, SOLID Design in Go, to the dot init technique.
First, I used the cd command to direct to the project's root directory (where the project is Chapter 4, SOLID Design in Go, source code):

Next, I ran glide-update to tell Glide to put the dependencies in the vendors directory:

But, that failed because the import statement was incorrect:

Here's ...