Skip to content

Commit

Permalink
fix: project init package name
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeloop committed Dec 4, 2024
1 parent e2ff595 commit fd0995a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ vendor/
tmp
configs
logs
hack
hack
build
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/coffeloop/codecrypto-academy/pfm-web3-nov24-4
module github.com/codecrypto-academy/pfm-web3-nov24-4

go 1.23.2

Expand Down
4 changes: 2 additions & 2 deletions handlers/fabricCaHandlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strconv"
"strings"

"github.com/coffeloop/codecrypto-academy/internal"
"github.com/coffeloop/codecrypto-academy/models"
"github.com/codecrypto-academy/pfm-web3-nov24-4/internal"
"github.com/codecrypto-academy/pfm-web3-nov24-4/models"
"github.com/gin-gonic/gin"
log "github.com/sirupsen/logrus"
v1 "k8s.io/api/core/v1"
Expand Down
2 changes: 1 addition & 1 deletion handlers/fabricPeerHandlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os/exec"
"strconv"

"github.com/coffeloop/codecrypto-academy/models"
"github.com/codecrypto-academy/pfm-web3-nov24-4/models"
"github.com/gin-gonic/gin"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"net/http"

"github.com/coffeloop/codecrypto-academy/handlers"
"github.com/codecrypto-academy/pfm-web3-nov24-4/handlers"
"github.com/gin-contrib/cors"
"github.com/gin-gonic/gin"
log "github.com/sirupsen/logrus"
Expand Down

0 comments on commit fd0995a

Please sign in to comment.