diff --git a/go.mod b/go.mod index a0c571c..5faffd2 100644 --- a/go.mod +++ b/go.mod @@ -13,7 +13,7 @@ require ( github.com/Masterminds/goutils v1.1.1 // indirect github.com/Masterminds/semver/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/cpuguy83/go-md2man/v2 v2.0.2 // indirect github.com/fsnotify/fsnotify v1.6.0 // indirect diff --git a/main.go b/main.go index 9ce05a1..d35bebf 100644 --- a/main.go +++ b/main.go @@ -16,10 +16,9 @@ import ( ) var ( - 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") - elasticSearch = flag.String("elastic", "http://127.0.0.1:62002", "elastic search URL") - packageNamePlaceholder = "VEV2025.624" // Placeholder for AIP package name + 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") + elasticSearch = flag.String("elastic", "http://127.0.0.1:62002", "elastic search URL") ) func main() {