mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
8 lines
185 B
JavaScript
8 lines
185 B
JavaScript
'use strict';
|
|
|
|
module.exports = () => async (_, { id }, { dataSources }) => {
|
|
const rdioScannerCall = await dataSources.rdioScannerCall.getCall(id);
|
|
|
|
return rdioScannerCall;
|
|
};
|