change name
This commit is contained in:
parent
6000a0ce74
commit
00c3f07135
2
.gitignore
vendored
2
.gitignore
vendored
@ -6,7 +6,7 @@
|
|||||||
*.so
|
*.so
|
||||||
*.dylib
|
*.dylib
|
||||||
|
|
||||||
r2go
|
risk
|
||||||
main
|
main
|
||||||
|
|
||||||
# Test binary, built with `go test -c`
|
# Test binary, built with `go test -c`
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"r2go/utils"
|
"risk/utils"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lithammer/fuzzysearch/fuzzy"
|
"github.com/lithammer/fuzzysearch/fuzzy"
|
||||||
|
@ -2,8 +2,8 @@ package cli
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"r2go/tools"
|
"risk/tools"
|
||||||
"r2go/utils"
|
"risk/utils"
|
||||||
|
|
||||||
"github.com/fatih/color"
|
"github.com/fatih/color"
|
||||||
)
|
)
|
||||||
|
16
main.go
16
main.go
@ -5,10 +5,10 @@ import (
|
|||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"r2go/api"
|
"risk/api"
|
||||||
"r2go/cli"
|
"risk/cli"
|
||||||
"r2go/tools"
|
"risk/tools"
|
||||||
"r2go/utils"
|
"risk/utils"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/fatih/color"
|
"github.com/fatih/color"
|
||||||
@ -16,7 +16,7 @@ import (
|
|||||||
|
|
||||||
var version string = "0.0.1"
|
var version string = "0.0.1"
|
||||||
|
|
||||||
// Init starts the CLI frontend for r2go
|
// Init starts the CLI frontend for risk
|
||||||
func main() {
|
func main() {
|
||||||
logFile, err := os.OpenFile(utils.SystemInfo.ProgDir+"/r2mod-go.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
|
logFile, err := os.OpenFile(utils.SystemInfo.ProgDir+"/r2mod-go.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
|
||||||
utils.CheckErr(err)
|
utils.CheckErr(err)
|
||||||
@ -54,7 +54,7 @@ func main() {
|
|||||||
case "info":
|
case "info":
|
||||||
api.InitAPI()
|
api.InitAPI()
|
||||||
if len(os.Args) <= 2 {
|
if len(os.Args) <= 2 {
|
||||||
fmt.Println("Usage: r2go info <dependency string>")
|
fmt.Println("Usage: risk info <dependency string>")
|
||||||
} else {
|
} else {
|
||||||
status, selectedmod := api.GetModData(os.Args[2])
|
status, selectedmod := api.GetModData(os.Args[2])
|
||||||
if status != 0 {
|
if status != 0 {
|
||||||
@ -131,7 +131,7 @@ func main() {
|
|||||||
case "filter":
|
case "filter":
|
||||||
fmt.Println(tools.ExposeModString(os.Args[2]))
|
fmt.Println(tools.ExposeModString(os.Args[2]))
|
||||||
case "version", "ver", "v":
|
case "version", "ver", "v":
|
||||||
color.Magenta("> r2go", version)
|
color.Magenta("> risk", version)
|
||||||
fmt.Println(" > github.com/endigma442")
|
fmt.Println(" > github.com/endigma442")
|
||||||
case "search", "s", "find":
|
case "search", "s", "find":
|
||||||
api.InitAPI()
|
api.InitAPI()
|
||||||
@ -147,6 +147,6 @@ func main() {
|
|||||||
}
|
}
|
||||||
color.Green("> Complete!")
|
color.Green("> Complete!")
|
||||||
default:
|
default:
|
||||||
fmt.Println("Unknown command, use 'r2go help' for a list of commands.")
|
fmt.Println("Unknown command, use 'risk help' for a list of commands.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"r2go/api"
|
|
||||||
"r2go/utils"
|
|
||||||
"regexp"
|
"regexp"
|
||||||
|
"risk/api"
|
||||||
|
"risk/utils"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user