10 lines
159 B
Go
10 lines
159 B
Go
|
|
package config
|
||
|
|
|
||
|
|
type Withdraw struct {
|
||
|
|
PlatformFee int64 `mapstructure:"platform_fee"`
|
||
|
|
}
|
||
|
|
|
||
|
|
func (w *Withdraw) GetPlatformFee() int64 {
|
||
|
|
return w.PlatformFee
|
||
|
|
}
|