/
dimamir
/
rill
Обзор
Документация
Войти
/
dimamir
/
rill
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
cli/cmd/runtime/runtime.go
19 строк
465 B
Benjamin Egelund-Müller
CLI: Util functions cleanup (#4141)
26 фев 2024, 15:20
Не верифицирован
26 фев 2024, 15:20
9f946f9
Код
Авторство
О чём код?
package runtime import ( "github.com/rilldata/rill/cli/pkg/cmdutil" "github.com/spf13/cobra" ) // RuntimeCmd represents the runtime command func RuntimeCmd(ch *cmdutil.Helper) *cobra.Command { runtimeCmd := &cobra.Command{ Use: "runtime", Hidden: !ch.IsDev(), Short: "Manage stand-alone runtimes", } runtimeCmd.AddCommand(StartCmd(ch)) runtimeCmd.AddCommand(PingCmd(ch)) runtimeCmd.AddCommand(InstallDuckDBExtensionsCmd(ch)) return runtimeCmd }