Naming Packages
Package names should be camelCase, with the exception of _test packages, which should just be camelCase package names
with the _test suffix appended to them.
Examples
packages.go
1package simple // okay
2package simpleBrands // okay
3package simpleBrands_test // okay
4
5package simple_brands // not okay
6package simplebrands // not okay