intake/cmd/source.go
2025-03-07 11:19:36 -08:00

25 lines
456 B
Go

/*
Copyright © 2025 NAME HERE <EMAIL ADDRESS>
*/
package cmd
import (
"github.com/spf13/cobra"
)
var sourceCmd = &cobra.Command{
Use: "source",
GroupID: sourceGroup.ID,
Short: "Manage sources",
Long: `Manage sources.
A source represents a single content feed that generates discrete feed items.
The command defined in the "fetch" action is used to check for new items to
update the feed.
`,
}
func init() {
rootCmd.AddCommand(sourceCmd)
}