From 8b584e513d78e5ba80dc6b1689130e8cd62e8c2d Mon Sep 17 00:00:00 2001 From: Lavisha Gupta Date: Fri, 30 Jan 2026 20:35:55 +0530 Subject: [PATCH] updated module --- CHANGELOG.md | 4 ++-- CONTRIBUTING.md | 2 +- cmd/api/main.go | 6 +++--- examples/basic.go | 2 +- go.mod | 2 +- internal/handler/csv_handler.go | 2 +- internal/handler/tests/csv_handler_test.go | 4 ++-- internal/parser/tests/csv_parser_test.go | 2 +- internal/service/conversion_service.go | 4 ++-- internal/service/tests/conversion_service_test.go | 2 +- pkg/csv2jsonx/converter.go | 2 +- 11 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 852c3dd..a6a7fc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -64,5 +64,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Environment-based configuration - Configurable SSL mode for database connections -[unreleased]: https://github.com/lavishag4193/csv2jsonx/compare/v1.0.0...HEAD -[1.0.0]: https://github.com/lavishag4193/csv2jsonx/releases/tag/v1.0.0 +[unreleased]: https://github.com/agileproject-gurpreet/csv2json/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/agileproject-gurpreet/csv2json/releases/tag/v1.0.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 83c8425..5d0c139 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -46,7 +46,7 @@ This project and everyone participating in it is governed by our [Code of Conduc 2. **Add upstream remote:** ```bash - git remote add upstream https://github.com/lavishag4193/csv2jsonx.git + git remote add upstream https://github.com/agileproject-gurpreet/csv2json.git ``` 3. **Install dependencies:** diff --git a/cmd/api/main.go b/cmd/api/main.go index 92baf5a..f77d20f 100644 --- a/cmd/api/main.go +++ b/cmd/api/main.go @@ -5,9 +5,9 @@ import ( "net/http" "os" - "github.com/lavishag4193/csv2jsonx/internal/database" - "github.com/lavishag4193/csv2jsonx/internal/handler" - "github.com/lavishag4193/csv2jsonx/internal/service" + "github.com/agileproject-gurpreet/csv2json/internal/database" + "github.com/agileproject-gurpreet/csv2json/internal/handler" + "github.com/agileproject-gurpreet/csv2json/internal/service" ) func main() { diff --git a/examples/basic.go b/examples/basic.go index b13140f..52c5fe1 100644 --- a/examples/basic.go +++ b/examples/basic.go @@ -4,7 +4,7 @@ import ( "fmt" "log" - "github.com/lavishag4193/csv2jsonx/pkg/csv2jsonx" + "github.com/agileproject-gurpreet/csv2json/pkg/csv2jsonx" ) func main() { diff --git a/go.mod b/go.mod index 1da22db..e6d6e12 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/lavishag4193/csv2jsonx +module github.com/agileproject-gurpreet/csv2json go 1.21 diff --git a/internal/handler/csv_handler.go b/internal/handler/csv_handler.go index d04fdf8..4c0b518 100644 --- a/internal/handler/csv_handler.go +++ b/internal/handler/csv_handler.go @@ -6,7 +6,7 @@ import ( "log" "net/http" - "github.com/lavishag4193/csv2jsonx/internal/service" + "github.com/agileproject-gurpreet/csv2json/internal/service" ) type CSVHandler struct { diff --git a/internal/handler/tests/csv_handler_test.go b/internal/handler/tests/csv_handler_test.go index cfa1210..af0ae99 100644 --- a/internal/handler/tests/csv_handler_test.go +++ b/internal/handler/tests/csv_handler_test.go @@ -11,8 +11,8 @@ import ( "os" "testing" - "github.com/lavishag4193/csv2jsonx/internal/handler" - "github.com/lavishag4193/csv2jsonx/internal/service" + "github.com/agileproject-gurpreet/csv2json/internal/handler" + "github.com/agileproject-gurpreet/csv2json/internal/service" ) // TestUploadCSV_Success tests successful CSV file upload diff --git a/internal/parser/tests/csv_parser_test.go b/internal/parser/tests/csv_parser_test.go index fafc904..8879d9a 100644 --- a/internal/parser/tests/csv_parser_test.go +++ b/internal/parser/tests/csv_parser_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/lavishag4193/csv2jsonx/internal/parser" + "github.com/agileproject-gurpreet/csv2json/internal/parser" ) func TestParseCSV(t *testing.T) { diff --git a/internal/service/conversion_service.go b/internal/service/conversion_service.go index 079391f..bffaf6a 100644 --- a/internal/service/conversion_service.go +++ b/internal/service/conversion_service.go @@ -6,8 +6,8 @@ import ( "io" "os" - "github.com/lavishag4193/csv2jsonx/internal/database" - "github.com/lavishag4193/csv2jsonx/internal/parser" + "github.com/agileproject-gurpreet/csv2json/internal/database" + "github.com/agileproject-gurpreet/csv2json/internal/parser" ) type ConversionService struct { diff --git a/internal/service/tests/conversion_service_test.go b/internal/service/tests/conversion_service_test.go index 0de635e..ed8fbe5 100644 --- a/internal/service/tests/conversion_service_test.go +++ b/internal/service/tests/conversion_service_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/lavishag4193/csv2jsonx/internal/service" + "github.com/agileproject-gurpreet/csv2json/internal/service" ) // TestNewConversionService tests service creation diff --git a/pkg/csv2jsonx/converter.go b/pkg/csv2jsonx/converter.go index 8f23039..87273af 100644 --- a/pkg/csv2jsonx/converter.go +++ b/pkg/csv2jsonx/converter.go @@ -5,7 +5,7 @@ import ( "io" "os" - "github.com/lavishag4193/csv2jsonx/internal/parser" + "github.com/agileproject-gurpreet/csv2json/internal/parser" ) func ConvertReader(r io.Reader) ([]byte, error) {