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

30 lines
454 B
Go
Raw Permalink Normal View History

2022-06-08 20:56:32 +00:00
package profile
import (
"github.com/spf13/cobra"
2022-10-14 16:11:16 +00:00
"github.com/satisfactorymodding/ficsit-cli/cli"
2022-06-08 20:56:32 +00:00
)
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 {
2022-10-14 16:11:16 +00:00
global, err := cli.InitCLI(false)
2022-06-08 20:56:32 +00:00
if err != nil {
return err
}
for name := range global.Profiles.Profiles {
println(name)
}
return nil
},
}