natsio/subject/bank.go

16 lines
375 B
Go
Raw Normal View History

2022-09-14 07:09:48 +00:00
package subject
import "fmt"
func getBankValue(val string) string {
return fmt.Sprintf("%s.%s", prefixes.Bank, val)
}
var Bank = struct {
2022-10-27 02:37:07 +00:00
GetBankAndBranchesByBankIDs string
CheckBankAndBranchByID string
2022-09-14 07:09:48 +00:00
}{
2022-10-27 02:37:07 +00:00
GetBankAndBranchesByBankIDs: getBankValue("get_bank_and_branches_by_bank_ids"),
CheckBankAndBranchByID: getBankValue("check_bank_and_branch_by_id"),
2022-09-14 07:09:48 +00:00
}