master
1package get
2
3import (
4 "github.com/kahnwong/swissknife/internal/get"
5 "github.com/spf13/cobra"
6)
7
8var siteinfoCmd = &cobra.Command{
9 Use: "siteinfo [url]",
10 Short: "Get website technology information",
11 Long: `Analyze a website and display the technologies it uses, categorized by type`,
12 RunE: func(cmd *cobra.Command, args []string) error {
13 return get.GetSiteInfo(args)
14 },
15}
16
17func init() {
18 Cmd.AddCommand(siteinfoCmd)
19}