/
alt3rmann
/
graphql-engine
Обзор
Документация
Войти
/
alt3rmann
/
graphql-engine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
cli-ext/src/services/sdl/from/command.js
10 строк
283 B
Anuj Shah
cli-ext: setup linting and prettification (#4463)
19 май 2020, 14:01
Не верифицирован
19 май 2020, 14:01
3f631ca
Код
Авторство
О чём код?
const handler = require('./handler'); const { getInputPayload } = require('../../../utils/commandUtils'); const command = (subCommands) => { const rootInput = subCommands[0]; const payload = getInputPayload(subCommands); return handler(payload); }; module.exports = command;