(ctx context.Context, id *ttnpb.EntityIdentifiers)
| 33 | } |
| 34 | |
| 35 | func newEntityReq(ctx context.Context, id *ttnpb.EntityIdentifiers) cachedReq { |
| 36 | req := newReq(ctx) |
| 37 | req.UniqueID = unique.ID(ctx, id) |
| 38 | return req |
| 39 | } |
| 40 | |
| 41 | type cachedReq struct { |
| 42 | UniqueID string |
no test coverage detected