Initial Commit

This commit is contained in:
2025-04-29 18:38:14 +09:30
commit 0371b15c8c
7 changed files with 268 additions and 0 deletions

18
go.mod Normal file
View File

@@ -0,0 +1,18 @@
module sql_csv_generator
go 1.24.2
require (
github.com/microsoft/go-mssqldb v1.8.0
github.com/spf13/cobra v1.9.1
)
require (
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.6 // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/text v0.16.0 // indirect
)