Skip to content

Commit

Permalink
chore: update module name
Browse files Browse the repository at this point in the history
  • Loading branch information
minhnghia2k3 committed Sep 1, 2024
1 parent 8770ca5 commit cba126b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion cmd/goboil/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"goboil/cmd"
"github.com/minhnghia2k3/goboil/cmd"
"log"
)

Expand Down
10 changes: 5 additions & 5 deletions cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package cmd

import (
"github.com/minhnghia2k3/goboil/frameworks"
"github.com/minhnghia2k3/goboil/frameworks/fiber"
"github.com/minhnghia2k3/goboil/frameworks/gfly"
"github.com/minhnghia2k3/goboil/frameworks/gin"
"github.com/minhnghia2k3/goboil/helpers"
"github.com/spf13/cobra"
"goboil/frameworks"
"goboil/frameworks/fiber"
"goboil/frameworks/gfly"
"goboil/frameworks/gin"
"goboil/helpers"
"log"
"os"
)
Expand Down
4 changes: 2 additions & 2 deletions frameworks/fiber/fiber.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package fiber

import (
_ "embed"
"goboil/frameworks"
"goboil/helpers"
"github.com/minhnghia2k3/goboil/frameworks"
"github.com/minhnghia2k3/goboil/helpers"
"os/exec"
)

Expand Down
2 changes: 1 addition & 1 deletion frameworks/gfly/gfly.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package gfly

import (
"fmt"
"goboil/frameworks"
"github.com/minhnghia2k3/goboil/frameworks"
)

type Gfly struct {
Expand Down
4 changes: 2 additions & 2 deletions frameworks/gin/gin.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package gin

import (
_ "embed"
"goboil/frameworks"
"goboil/helpers"
"github.com/minhnghia2k3/goboil/frameworks"
"github.com/minhnghia2k3/goboil/helpers"
"os/exec"
)

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 goboil
module github.com/minhnghia2k3/goboil

go 1.22.5

Expand Down

0 comments on commit cba126b

Please sign in to comment.