-
Notifications
You must be signed in to change notification settings - Fork 63
/
service.go
54 lines (44 loc) · 1.37 KB
/
service.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2023, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package service
import (
"context"
"github.com/MakeNowJust/heredoc"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"kraftkit.sh/internal/cli/kraft/cloud/service/create"
"kraftkit.sh/internal/cli/kraft/cloud/service/get"
"kraftkit.sh/internal/cli/kraft/cloud/service/list"
"kraftkit.sh/internal/cli/kraft/cloud/service/remove"
"kraftkit.sh/cmdfactory"
)
type ServiceOptions struct{}
func NewCmd() *cobra.Command {
cmd, err := cmdfactory.New(&ServiceOptions{}, cobra.Command{
Short: "Manage services on KraftCloud",
Use: "service SUBCOMMAND",
Aliases: []string{"services", "svc"},
Long: "Manage services on KraftCloud.",
Example: heredoc.Doc(`
# List services in your account.
$ kraft cloud service list
`),
Annotations: map[string]string{
cmdfactory.AnnotationHelpGroup: "kraftcloud-svc",
cmdfactory.AnnotationHelpHidden: "true",
},
})
if err != nil {
panic(err)
}
cmd.AddCommand(create.NewCmd())
cmd.AddCommand(list.NewCmd())
cmd.AddCommand(get.NewCmd())
cmd.AddCommand(remove.NewCmd())
return cmd
}
func (opts *ServiceOptions) Run(_ context.Context, _ []string) error {
return pflag.ErrHelp
}