16 lines
339 B
Go
16 lines
339 B
Go
|
package subject
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
// getSocialPostValue ...
|
||
|
func getSocialPostValue(val string) string {
|
||
|
return fmt.Sprintf("%s.%s", prefixes.SocialPost, val)
|
||
|
}
|
||
|
|
||
|
// SocialPost ...
|
||
|
var SocialPost = struct {
|
||
|
GetListSocialPostAppInfoByIDs string
|
||
|
}{
|
||
|
GetListSocialPostAppInfoByIDs: getSocialPostValue("get_list_social_post_app_info_by_ids"),
|
||
|
}
|