Re: [go-nuts] Importing local package

2018-10-09 Thread D Whelp
Yes, my GOPATH and GOROOT are working fine in fact other local imports work as intended. I made a idiotic mistake and wasted so much time googling when I shouldve seen what I was doing wrong. I was calling `QueryESXi()` and adding the import line. I left off the `cli.QueryESXi()`. Once I did

Re: [go-nuts] Importing local package

2018-10-09 Thread Justin Israel
On Wed, Oct 10, 2018, 5:49 AM D Whelp wrote: > Hello all, > > Super new to Golang, loving the hell out of it, but I am running into a > small issue. I have a small application that I am working through. I can > import my models using `import ("/dojo/pkg/models")` in main.go just fine. > Now I a

[go-nuts] Importing local package

2018-10-09 Thread D Whelp
Hello all, Super new to Golang, loving the hell out of it, but I am running into a small issue. I have a small application that I am working through. I can import my models using `import ("/dojo/pkg/models")` in main.go just fine. Now I am trying to build a `cli` package and I cannot import