8 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package money
 | |
| 
 | |
| import "github.com/shopspring/decimal"
 | |
| 
 | |
| type Money struct {
 | |
| 	Amount   decimal.Decimal `db:"amount"`
 | |
| 	Currency Currency        `db:"currency"`
 | |
| }
 |