Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand Down
6 changes: 3 additions & 3 deletions cmd/api/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion examples/basic.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

"github.com/lavishag4193/csv2jsonx/pkg/csv2jsonx"
"github.com/agileproject-gurpreet/csv2json/pkg/csv2jsonx"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/lavishag4193/csv2jsonx
module github.com/agileproject-gurpreet/csv2json

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion internal/handler/csv_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"net/http"

"github.com/lavishag4193/csv2jsonx/internal/service"
"github.com/agileproject-gurpreet/csv2json/internal/service"
)

type CSVHandler struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/handler/tests/csv_handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/parser/tests/csv_parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions internal/service/conversion_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion internal/service/tests/conversion_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"testing"

"github.com/lavishag4193/csv2jsonx/internal/service"
"github.com/agileproject-gurpreet/csv2json/internal/service"
)

// TestNewConversionService tests service creation
Expand Down
2 changes: 1 addition & 1 deletion pkg/csv2jsonx/converter.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down