for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package money
// Amount stores the amounts used for calculations
type Amount struct {
val int64
}
// Value returns the amount value
func (a *Amount) Value() int64 {
return a.val