(joinEUI, devEUI types.EUI64)
| 445 | } |
| 446 | |
| 447 | func (r *KeyRegistry) idSetKey(joinEUI, devEUI types.EUI64) string { |
| 448 | return r.Redis.Key("ids", joinEUI.String(), devEUI.String()) |
| 449 | } |
| 450 | |
| 451 | // GetByID gets session keys by joinEUI, devEUI, id. |
| 452 | func (r *KeyRegistry) GetByID(ctx context.Context, joinEUI, devEUI types.EUI64, id []byte, paths []string) (*ttnpb.SessionKeys, error) { |
no test coverage detected