15 lines
249 B
Go
15 lines
249 B
Go
|
package subject
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
// getSegmentValue ...
|
||
|
func getProductValue(val string) string {
|
||
|
return fmt.Sprintf("%s.%s", prefixes.Product, val)
|
||
|
}
|
||
|
|
||
|
var Product = struct {
|
||
|
ApplyRequest string
|
||
|
}{
|
||
|
ApplyRequest: getProductValue("apply_request"),
|
||
|
}
|