mirror of
https://github.com/LukeHagar/sailpoint-cli.git
synced 2025-12-06 04:21:15 +00:00
26 lines
539 B
Go
26 lines
539 B
Go
// Copyright (c) 2021, SailPoint Technologies, Inc. All rights reserved.
|
|
package logConfig
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func NewLogCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "log",
|
|
Short: "Interact with a SailPoint Virtual Appliances log configuration",
|
|
Long: "\nInteract with SailPoint Virtual Appliances log configuration\n\n",
|
|
Aliases: []string{"l"},
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
cmd.Help()
|
|
},
|
|
}
|
|
|
|
cmd.AddCommand(
|
|
newGetCommand(),
|
|
newSetCommand(),
|
|
)
|
|
|
|
return cmd
|
|
}
|