The GetDevices endpoint needs to request the device shadow for each device. Currently this is done sequentially, which is silly. This is go, no excuse not to go concurrent! We should do this [in parallel](https://dev.to/digi0ps/making-concurrent-api-requests-in-go-4jig)
The GetDevices endpoint needs to request the device shadow for each device.
Currently this is done sequentially, which is silly. This is go, no excuse not to go concurrent!
We should do this in parallel