14 lines
243 B
Go
14 lines
243 B
Go
|
package subject
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func getAffiliateValue(val string) string {
|
||
|
return fmt.Sprintf("%s.%s", prefixes.Affiliate, val)
|
||
|
}
|
||
|
|
||
|
var Affiliate = struct {
|
||
|
GetTransactions string
|
||
|
}{
|
||
|
GetTransactions: getAffiliateValue("get_transactions"),
|
||
|
}
|