Skip to content

Commit 22f77db

Browse files
committed
go build ok
1 parent 3f0fdcd commit 22f77db

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+230
-230
lines changed

app/console/command/demo.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package command
33
import (
44
"log"
55

6-
"hade/framework/cobra"
7-
"hade/framework/command/util"
6+
"github.com/gohade/hade/framework/cobra"
7+
"github.com/gohade/hade/framework/command/util"
88
)
99

1010
var DemoCommand = &cobra.Command{

app/console/kernel.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package console
22

33
import (
4-
"hade/framework"
5-
"hade/framework/cobra"
6-
hadeCommand "hade/framework/command"
7-
commandUtil "hade/framework/command/util"
4+
"github.com/gohade/hade/framework"
5+
"github.com/gohade/hade/framework/cobra"
6+
hadeCommand "github.com/gohade/hade/framework/command"
7+
commandUtil "github.com/gohade/hade/framework/command/util"
88
)
99

1010
// RunCommand is command

app/http/kernel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package http
22

33
import (
4-
"hade/framework/gin"
4+
"github.com/gohade/hade/framework/gin"
55
)
66

77
// NewHttpEngine is command

app/http/module/demo/api.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package demo
22

33
import (
4-
demoService "hade/app/provider/demo"
4+
demoService "github.com/gohade/hade/app/provider/demo"
55

6-
"hade/framework/gin"
6+
"github.com/gohade/hade/framework/gin"
77
)
88

99
type DemoApi struct {

app/http/module/demo/mapper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package demo
22

33
import (
4-
demoService "hade/app/provider/demo"
4+
demoService "github.com/gohade/hade/app/provider/demo"
55
)
66

77
func UserModelsToUserDTOs(models []UserModel) []UserDTO {

app/http/route.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package http
22

33
import (
4-
"hade/app/http/module/demo"
5-
"hade/framework/gin"
4+
"github.com/gohade/hade/app/http/module/demo"
5+
"github.com/gohade/hade/framework/gin"
66
)
77

88
func Routes(r *gin.Engine) {

app/provider/demo/provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package demo
22

33
import (
4-
"hade/framework"
4+
"github.com/gohade/hade/framework"
55
)
66

77
type DemoProvider struct {

app/provider/demo/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package demo
22

3-
import "hade/framework"
3+
import "github.com/gohade/hade/framework"
44

55
type Service struct {
66
container framework.Container

app/provider/kernel.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package provider
22

33
import (
4-
"hade/app/provider/demo"
5-
"hade/framework"
4+
"github.com/gohade/hade/app/provider/demo"
5+
"github.com/gohade/hade/framework"
66
)
77

88
// customer provider

docs/guide/app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
package http
99
1010
import (
11-
"hade/app/http/controller/demo"
12-
"hade/framework/gin"
11+
"github.com/gohade/hade/app/http/controller/demo"
12+
"github.com/gohade/hade/framework/gin"
1313
)
1414
1515
func Routes(r *gin.Engine) {

0 commit comments

Comments
 (0)