2024-08-09 10:02:05 +07:00

10 lines
129 B
Go

package config
type Order struct {
Fee float64 `mapstructure:"fee"`
}
func (w *Order) GetOrderFee() float64 {
return w.Fee
}