13 lines
178 B
Go
Raw Normal View History

2024-08-09 10:02:05 +07:00
package config
type Order struct {
Fee float64 `mapstructure:"fee"`
}
2024-08-21 22:48:14 +07:00
func (w *Order) GetOrderFee(source string) float64 {
if source == "POS" {
return 0
}
2024-08-09 10:02:05 +07:00
return w.Fee
}