mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
31 lines
490 B
Go
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)
|
|
}
|
|
},
|
|
}
|