package config type Withdraw struct { PlatformFee int64 `mapstructure:"platform_fee"` } func (w *Withdraw) GetPlatformFee() int64 { return w.PlatformFee }