/
alt3rmann
/
graphql-engine
Обзор
Документация
Войти
/
alt3rmann
/
graphql-engine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
cli/commands/scripts.go
21 строка
660 B
Mohd Bilal
cli: Use `-` instead of `*` in unordered list in docs and fix char cases
11 янв 2023, 11:39
11 янв 2023, 11:39
8cee3c5
Код
Авторство
О чём код?
package commands import ( "github.com/hasura/graphql-engine/cli/v2" "github.com/spf13/cobra" ) // NewScriptsCmd returns the scripts command func NewScriptsCmd(ec *cli.ExecutionContext) *cobra.Command { scriptsCmd := &cobra.Command{ Use: "scripts", Short: "Execute helper scripts to manage Hasura Projects", Long: "The scripts command offers a set of helper scripts to manage a Hasura project's configuration settings. This is used when upgrading between `v1`, `v2`, or `v3` configs.", SilenceUsage: true, } scriptsCmd.AddCommand( newScriptsUpdateConfigV2Cmd(ec), newUpdateMultipleSources(ec), ) return scriptsCmd }