Semaphore/cli/cmd/user_list.go
2024-10-26 12:56:17 +00:00

31 lines
490 B
Go

package cmd
import (
"fmt"
"github.com/semaphoreui/semaphore/db"
"github.com/spf13/cobra"
)
func init() {
userCmd.AddCommand(userListCmd)
}
var userListCmd = &cobra.Command{
Use: "list",
Short: "Print all users",
Run: func(cmd *cobra.Command, args []string) {
store := createStore("")
defer store.Close("")
users, err := store.GetUsers(db.RetrieveQueryParams{})
if err != nil {
panic(err)
}
for _, user := range users {
fmt.Println(user.Username)
}
},
}