natsio/subject/staff.go

15 lines
262 B
Go
Raw Normal View History

2022-10-07 08:09:28 +00:00
package subject
import "fmt"
func getStaffValue(val string) string {
return fmt.Sprintf("%s.%s", prefixes.Staff, val)
}
// Staff ...
var Staff = struct {
GetListStaffInfoByIDs string
}{
GetListStaffInfoByIDs: getStaffValue("get_list_staff_info_by_ids"),
}