fix(server): Amend package path for Go tooling compatibility

With these changes it is possible to keep Nixery in $GOPATH and build
the server in there, while still having things work correctly via Nix.
This commit is contained in:
Vincent Ambo 2019-10-05 14:54:49 +01:00 committed by Vincent Ambo
parent f4bf3518f6
commit 0642f7044d
6 changed files with 10 additions and 10 deletions

View file

@ -34,9 +34,9 @@ import (
"strings"
"cloud.google.com/go/storage"
"github.com/google/nixery/config"
"github.com/google/nixery/layers"
"github.com/google/nixery/manifest"
"github.com/google/nixery/server/config"
"github.com/google/nixery/server/layers"
"github.com/google/nixery/server/manifest"
log "github.com/sirupsen/logrus"
"golang.org/x/oauth2/google"
)