(smsID, number string)
| 36 | const CountKey = "sms:%s:%s" |
| 37 | |
| 38 | func getVCodeKey(smsID, number string) string { |
| 39 | return fmt.Sprintf(VCodeKey, smsID, number) |
| 40 | } |
| 41 | func getLockedKey(number string) string { |
| 42 | return fmt.Sprintf(LockedKey, number) |
| 43 | } |
no outgoing calls
no test coverage detected