Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ~/g/s/keystore-client » pwd
- /home/claes/go/src/keystore-client
- ~/g/s/keystore-client » tree
- .
- ├── bin
- │ └── client
- ├── extra
- │ ├── config.yml
- │ ├── dev_config.yml
- │ └── test_config.yml
- ├── go.mod
- ├── go.sum
- ├── Makefile
- ├── Readme.md
- └── src
- ├── client
- │ └── main.go
- ├── network
- │ ├── client.go
- │ └── requests.go
- ├── secrets
- │ ├── config.go
- │ └── shortcuts.go
- └── ui
- ## main.go
- package main
- import (
- "fmt"
- log "github.com/sirupsen/logrus"
- "keystore-client/src/network"
- scrt "keystore-client/src/secrets"
- "net/http"
- "os"
- )
- ...
- ~/g/s/keystore-client » go build -o ./bin/client ./src/client
- src/client/main.go:6:2: package keystore-client/src/network is not in GOROOT (/usr/lib/go/src/keystore-client/src/network)
- src/client/main.go:7:2: package keystore-client/src/secrets is not in GOROOT (/usr/lib/go/src/keystore-client/src/secrets)
Add Comment
Please, Sign In to add comment