Small change

This commit is contained in:
Daniel Cosme
2026-03-19 16:32:11 -04:00
parent 2d1ee4471d
commit f55fc54537
2 changed files with 4 additions and 5 deletions

2
go.mod
View File

@@ -13,7 +13,7 @@ require (
github.com/Masterminds/goutils v1.1.1 // indirect github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.3.0 // indirect github.com/Masterminds/semver/v3 v3.3.0 // indirect
github.com/Masterminds/sprig/v3 v3.3.0 // indirect github.com/Masterminds/sprig/v3 v3.3.0 // indirect
github.com/aarondl/opt v0.0.0-20250607033636-982744e1bd65 // indirect github.com/aarondl/opt v0.0.0-20250607033636-982744e1bd65
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/fsnotify/fsnotify v1.6.0 // indirect

View File

@@ -19,7 +19,6 @@ var (
csvPath = flag.String("csv", "aips.csv", "Path to the CSV file containing AIP names") csvPath = flag.String("csv", "aips.csv", "Path to the CSV file containing AIP names")
mysqlConnString = flag.String("mysql", "root:12345@tcp(localhost:62001)/MCP", "mysql connection string") mysqlConnString = flag.String("mysql", "root:12345@tcp(localhost:62001)/MCP", "mysql connection string")
elasticSearch = flag.String("elastic", "http://127.0.0.1:62002", "elastic search URL") elasticSearch = flag.String("elastic", "http://127.0.0.1:62002", "elastic search URL")
packageNamePlaceholder = "VEV2025.624" // Placeholder for AIP package name
) )
func main() { func main() {