Skip to content

Commit

Permalink
fix: update module path to lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
Ja7ad committed Jan 5, 2023
1 parent bc9829a commit 1f5cce2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ package main
import (
"context"
"fmt"
"github.com/GoFarsi/paygap/client"
zarinpal "github.com/GoFarsi/paygap/providers/zarinpal/v4"
"github.com/gofarsi/paygap/client"
zarinpal "github.com/gofarsi/paygap/providers/zarinpal/v4"
"log"
)

Expand Down
4 changes: 2 additions & 2 deletions _example/zarinpal/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"context"
"fmt"
"github.com/GoFarsi/paygap/client"
zarinpal "github.com/GoFarsi/paygap/providers/zarinpal/v4"
"github.com/gofarsi/paygap/client"
zarinpal "github.com/gofarsi/paygap/providers/zarinpal/v4"
"log"
)

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/GoFarsi/paygap
module github.com/gofarsi/paygap

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion providers/zarinpal/v4/models.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package v4

import "github.com/GoFarsi/paygap/client"
import "github.com/gofarsi/paygap/client"

type Zarinpal struct {
client client.Transporter
Expand Down
4 changes: 2 additions & 2 deletions providers/zarinpal/v4/zarinpal.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package v4

import (
"context"
"github.com/GoFarsi/paygap/client"
"github.com/GoFarsi/paygap/status"
"github.com/gofarsi/paygap/client"
"github.com/gofarsi/paygap/status"
"google.golang.org/grpc/codes"
"net/http"
)
Expand Down

0 comments on commit 1f5cce2

Please sign in to comment.