Providing Configurations

next we must define the configurations for our middleware

config.js
import {DEVICE_SPEC} from './spec';

export default {
    specs: {
        POST: {
            '/device': {
                body: DEVICE_SPEC,
            },
        },
    },
};

Last updated

Was this helpful?