humble-bot/cmd/queue-show.go

24 lines
476 B
Go
Raw 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{
Use: "show",
Short: "Show items in queue",
Run: app.RunQueueShow,
Args: cobra.ExactArgs(0),
}
func init() {
queueCmd.AddCommand(queueshowCmd)
}