20 lines
239 B
Go
20 lines
239 B
Go
|
/*
|
||
|
Copyright © 2025 NAME HERE <EMAIL ADDRESS>
|
||
|
*/
|
||
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var sourceCmd = &cobra.Command{
|
||
|
Use: "source",
|
||
|
Short: "Manage sources",
|
||
|
Long: `
|
||
|
`,
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(sourceCmd)
|
||
|
}
|