Skip to content

Commit c0ceb12

Browse files
committed
rename master-go to go-service
1 parent 859000b commit c0ceb12

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

examples/gin-server/gin-server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"net/http"
99
"sync"
1010

11-
"github.com/acl-dev/master-go"
11+
"github.com/acl-dev/go-service"
1212
"github.com/gin-gonic/gin"
1313
)
1414

examples/gin-server/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module main
22

33
go 1.16
44

5-
require github.com/acl-dev/master-go v1.1.0
5+
require github.com/acl-dev/go-service v1.1.1
66

77
require github.com/gin-gonic/gin v1.7.7

examples/go-echod/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"log"
77
"net"
8-
"github.com/acl-dev/master-go"
8+
"github.com/acl-dev/go-service"
99
)
1010

1111
func onAccept(conn net.Conn) {

examples/go-httpd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"net"
88
"net/http"
99

10-
"github.com/acl-dev/master-go"
10+
"github.com/acl-dev/go-service"
1111
)
1212

1313
func rootHandler(w http.ResponseWriter, _ *http.Request) {

examples/grpc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module grpc
33
go 1.16
44

55
require (
6-
github.com/acl-dev/master-go v1.0.7
6+
github.com/acl-dev/go-service v1.1.1
77
google.golang.org/grpc v1.43.0
88
google.golang.org/protobuf v1.27.1
99
)

examples/grpc/server/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sync"
1111
"google.golang.org/grpc"
1212
"google.golang.org/grpc/reflection"
13-
"github.com/acl-dev/master-go"
13+
"github.com/acl-dev/go-service"
1414

1515
"grpc/pb"
1616
)

examples/httpd-handler/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"flag"
55
"fmt"
6-
"github.com/acl-dev/master-go"
6+
"github.com/acl-dev/go-service"
77
"log"
88
"net/http"
99
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/acl-dev/master-go
1+
module github.com/acl-dev/go-service
22

33
go 1.16
44

0 commit comments

Comments
 (0)