diff --git a/cmd/list.go b/cmd/list.go index 7c1a059..3f257ab 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -1,25 +1,24 @@ /* Copyright © 2023 NAME HERE - */ package cmd import ( - "log" - "fmt" "encoding/json" + "fmt" + "log" + "github.com/GitHubSecurityLab/gh-mrva/models" + "github.com/GitHubSecurityLab/gh-mrva/utils" "github.com/spf13/cobra" - "github.com/GitHubSecurityLab/gh-mrva/utils" - "github.com/GitHubSecurityLab/gh-mrva/models" ) var listCmd = &cobra.Command{ Use: "list", Short: "List saved sessions.", - Long: `List saved sessions.`, + Long: `List saved sessions.`, Run: func(cmd *cobra.Command, args []string) { - listSessions() + listSessions() }, } diff --git a/config/config.go b/config/config.go index d00da4f..de8edbb 100644 --- a/config/config.go +++ b/config/config.go @@ -1,7 +1,6 @@ -package config +package config const ( MAX_MRVA_REPOSITORIES = 1000 WORKERS = 10 ) -