gin-example/pkg/domain/entity/exchange.go

13 lines
164 B
Go
Raw Normal View History

2023-09-14 06:49:47 +00:00
package entity
type ExchangeRate struct {
rage string
source string
target string
}
func (a *ExchangeRate) ExchageTo(money Money) Money {
return Money{}
}