We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9f8626 commit 91a8cc5Copy full SHA for 91a8cc5
go-mod-tidy.sh
@@ -0,0 +1,8 @@
1
+# clean the mod cache
2
+#go clean -modcache
3
+# set the minimum go version to use for the module
4
+go mod edit -go=1.16
5
+# add missing and remove unused modules
6
+go mod tidy
7
+# update all dependencies
8
+go get -u ./...
report/excel.go
@@ -1,9 +1,9 @@
package report
import (
- "github.com/360EntSecGroup-Skylar/excelize/v2"
"github.com/threagile/threagile/colors"
"github.com/threagile/threagile/model"
+ "github.com/xuri/excelize/v2"
"sort"
"strconv"
9
"strings"
0 commit comments