Follow go code conventions
Closed this issue · 1 comments
dotslash commented
TODOs
- Having all code in a src directory does not seem to be golang convention.
- Also the well known way to develop go code seems to be to have the repository in
$GOPATH/src/github.com/<author>/<repo>
. The documentation needs to be updated to reflect that. - Go expects decent documentation for variables that exported from a file.
- snake_case variable naming is not recommended
dotslash commented
Go expects decent documentation for variables that exported from a file.
snake_case variable naming is not recommended
These are done