Providing Configurations
next we must define the configurations for our middleware
import {DEVICE_SPEC} from './spec';
export default {
specs: {
POST: {
'/device': {
body: DEVICE_SPEC,
},
},
},
};
Last updated
Was this helpful?