fullstorydev / hauser

Service for moving your Fullstory export files to a data warehouse
MIT License
48 stars 23 forks source link

use vendoring #6

Closed jhump closed 7 years ago

jhump commented 7 years ago

The first commit is a monster. But it didn't actually touch file contents -- it just moves stuff around to match the layout of a proper Go repo. It's basically the result of this:

git mv src vendor
git mv gorepomanifest.json vendor/

The latter step is because the latest gorepoman, which supports vendor folders, expects the manifest to be in the managed vendor folder.

(In the future, using gorepoman in here will entail invoking it with a -d parameter, so that it manages the dependencies in the correct location: gorepoman -d ./vendor ...)

If you look at the other two commits, you will see the actual (and very minor) changes, since the repo is now go get-able and should use proper import paths instead of relative imports.