14 lines
240 B
Go
14 lines
240 B
Go
|
package subject
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func getWithdrawValue(val string) string {
|
||
|
return fmt.Sprintf("%s.%s", prefixes.Withdraw, val)
|
||
|
}
|
||
|
|
||
|
var Withdraw = struct {
|
||
|
GetSupplierCash string
|
||
|
}{
|
||
|
GetSupplierCash: getWithdrawValue("get_supplier_cash"),
|
||
|
}
|