ficsit-cli-flake/cmd/profile/ls.go

29 lines
448 B
Go
Raw Normal View History

2022-06-08 20:56:32 +00:00
package profile
import (
"github.com/satisfactorymodding/ficsit-cli/cli"
"github.com/spf13/cobra"
)
func init() {
Cmd.AddCommand(lsCmd)
}
var lsCmd = &cobra.Command{
Use: "ls",
Short: "List all profiles",
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
global, err := cli.InitCLI()
if err != nil {
return err
}
for name := range global.Profiles.Profiles {
println(name)
}
return nil
},
}