/
dimamir
/
rill
Обзор
Документация
Войти
/
dimamir
/
rill
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
cli/cmd/sudo/annotations/annotations.go
18 строк
389 B
Benjamin Egelund-Müller
Admin: change tags to annotations (#3857)
17 янв 2024, 13:32
Не верифицирован
17 янв 2024, 13:32
6b9da9b
Код
Авторство
О чём код?
package annotations import ( "github.com/rilldata/rill/cli/pkg/cmdutil" "github.com/spf13/cobra" ) func AnnotationsCmd(ch *cmdutil.Helper) *cobra.Command { annotationsCmd := &cobra.Command{ Use: "annotations", Short: "Manage annotations for project in an organization", } annotationsCmd.AddCommand(GetCmd(ch)) annotationsCmd.AddCommand(SetCmd(ch)) return annotationsCmd }