⛳ alerts for any ctfd instance via ntfy
1package status
2
3import (
4 "github.com/spf13/cobra"
5)
6
7// StatusCmd represents the status command
8var StatusCmd = &cobra.Command{
9 Use: "status",
10 Short: "Show CTFd status information",
11 Long: "Shows the current CTFd scoreboard and list of challenges in a tabular format",
12 Run: runDashboard,
13}