In your .proto
file you should write something like this:
option go_package = "relative/path/where/you/want/generated/code/to/be/placed;package-name-for-generated-code";
The ;
is required between path and package name.
Hope this will solve your problem ;)