2022-09-20 03:28:35 +00:00
|
|
|
package subject
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
func getNewsValue(val string) string {
|
2022-09-20 06:49:58 +00:00
|
|
|
return fmt.Sprintf("%s.%s", prefixes.News, val)
|
2022-09-20 03:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var News = struct {
|
|
|
|
GetProductNoticesByInventory string
|
|
|
|
}{
|
|
|
|
GetProductNoticesByInventory: getNewsValue("get_product_notices_by_inventory"),
|
|
|
|
}
|