humble-bot/cmd/queue-show.go

25 lines
512 B
Go
Raw Permalink Normal View History

2023-07-11 09:57:29 +02:00
/*
Copyright © 2023 Laura Kalb <dev@lauka.net>
The code of this project is available under the MIT license. See the LICENSE file for more info.
*/
package cmd
import (
"codeberg.org/lauralani/humble-bot/app"
"github.com/spf13/cobra"
)
// queueshowCmd represents the queue command
var queueshowCmd = &cobra.Command{
2023-07-11 12:42:28 +02:00
Use: "show",
Short: "Show items in queue",
Run: app.RunQueueShow,
Args: cobra.ExactArgs(0),
Aliases: []string{"list"},
2023-07-11 09:57:29 +02:00
}
func init() {
queueCmd.AddCommand(queueshowCmd)
}