For example, for starting a new project, the following should work:
``` cd myproject go mod init github.com/rhnvrm/mytestproject go get github.com/zerodhatech/gokiteconnect/v3 ```
In case you are adding this package to an existing project, you might need to do a `go mod init` inside that project to add support for go modules to your project.
It is recommended that if you are using Go 1.11+, you should use go modules. If not, backward compatibility is supported for older versions of Go. For those versions, you can use `go get github.com/zerodhatech/gokiteconnect`
is this "v3" intended? no such folder available. Let me know if i'm missing something here.
We support go modules for our package. You can read more about modules here (https://github.com/golang/go/wiki/Modules).
For example, for starting a new project, the following should work:
```
cd myproject
go mod init github.com/rhnvrm/mytestproject
go get github.com/zerodhatech/gokiteconnect/v3
```
In case you are adding this package to an existing project, you might need to do a `go mod init` inside that project to add support for go modules to your project.
It is recommended that if you are using Go 1.11+, you should use go modules. If not, backward compatibility is supported for older versions of Go. For those versions, you can use `go get github.com/zerodhatech/gokiteconnect`