-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorect import when using go modules with full project name #16
Comments
Sorry,it‘s a bug, I will fix it at once. |
Hi,I have fixed, it is bug caused by the PR(#12 ) |
Hi,
I came across a bug whilst generating boilercode for go-kit.
I'm running go version:
go version go1.15.2 linux/amd64
Running the latest version of kit.
The service was generated as follows:
Then to generate the middleware and other boiler code:
The generates imports block looks as follows:
The culprit line is:
service "hello/pkg/service"
, as I'm using go modules with the module namebitbucket.org/tapanito/hello
the importservice "hello/pkg/service"
is not valid.The text was updated successfully, but these errors were encountered: