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