feat: change name to cli

This commit is contained in:
angelina-tsuboi
2023-05-05 14:40:02 -07:00
parent 4af422e3f2
commit 87f7bd339e
2 changed files with 10 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ import (
"os"
"github.com/spf13/cobra"
"github.com/ANG13T/SatIntel/osint"
"github.com/ANG13T/SatIntel/cli"
)
var rootCmd = &cobra.Command{
@@ -21,7 +21,7 @@ Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: func(cmd *cobra.Command, args []string) {
osint.SatIntel()
cli.SatIntel()
},
}