14 lines
293 B
Go
14 lines
293 B
Go
package subject
|
|
|
|
import "fmt"
|
|
|
|
func getStaffValue(val string) string {
|
|
return fmt.Sprintf("%s.%s", prefixes.Staff, val)
|
|
}
|
|
|
|
var Staff = struct {
|
|
GetListStaffInfoByNotificationAction string
|
|
}{
|
|
GetListStaffInfoByNotificationAction: getStaffValue("get_list_staff_info_by_notification_info"),
|
|
}
|