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>
*/
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()
},
}

View File

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