Formatting

This commit is contained in:
Alvaro Muñoz
2023-09-11 16:57:59 +02:00
parent 5b54ffbf91
commit 94f7572d92
2 changed files with 7 additions and 9 deletions

View File

@@ -1,25 +1,24 @@
/* /*
Copyright © 2023 NAME HERE <EMAIL ADDRESS> Copyright © 2023 NAME HERE <EMAIL ADDRESS>
*/ */
package cmd package cmd
import ( import (
"log"
"fmt"
"encoding/json" "encoding/json"
"fmt"
"log"
"github.com/GitHubSecurityLab/gh-mrva/models"
"github.com/GitHubSecurityLab/gh-mrva/utils"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/GitHubSecurityLab/gh-mrva/utils"
"github.com/GitHubSecurityLab/gh-mrva/models"
) )
var listCmd = &cobra.Command{ var listCmd = &cobra.Command{
Use: "list", Use: "list",
Short: "List saved sessions.", Short: "List saved sessions.",
Long: `List saved sessions.`, Long: `List saved sessions.`,
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
listSessions() listSessions()
}, },
} }

View File

@@ -1,7 +1,6 @@
package config package config
const ( const (
MAX_MRVA_REPOSITORIES = 1000 MAX_MRVA_REPOSITORIES = 1000
WORKERS = 10 WORKERS = 10
) )