Skip to content

Commit a8798ec

Browse files
committed
go mod
1 parent ef68f07 commit a8798ec

File tree

1,010 files changed

+272347
-128591
lines changed

Some content is hidden

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

1,010 files changed

+272347
-128591
lines changed

Godeps/Godeps.json

-327
This file was deleted.

Godeps/Readme

-5
This file was deleted.

Makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ cmd := $(shell ls cmd/)
22

33
all: $(cmd)
44

5-
Vendor= github.com/dearcode/netpi/vendor/
6-
Project = $(Vendor)github.com/dearcode/doodle/service/debug.Project
7-
GitHash = $(Vendor)github.com/dearcode/doodle/service/debug.GitHash
8-
GitTime = $(Vendor)github.com/dearcode/doodle/service/debug.GitTime
9-
GitMessage = $(Vendor)github.com/dearcode/doodle/service/debug.GitMessage
5+
Vendor= dearcode.net/netpi/vendor/
6+
Project = $(Vendor)dearcode.net/doodle/pkg/service/debug.Project
7+
GitHash = $(Vendor)dearcode.net/doodle/pkg/service/debug.GitHash
8+
GitTime = $(Vendor)dearcode.net/doodle/pkg/service/debug.GitTime
9+
GitMessage = $(Vendor)dearcode.net/doodle/pkg/service/debug.GitMessage
1010

1111

12-
LDFLAGS += -X "$(Project)=github.com/dearcode/netpi"
12+
LDFLAGS += -X "$(Project)=dearcode.net/netpi"
1313
LDFLAGS += -X "$(GitHash)=$(shell git log --pretty=format:'%H' -1)"
1414
LDFLAGS += -X "$(GitTime)=$(shell git log --pretty=format:'%ct' -1)"
1515
LDFLAGS += -X "$(GitMessage)=$(shell git log --pretty=format:'%cn %s %b' -1)"

cmd/agentd/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package main
33
import (
44
"flag"
55

6-
"github.com/dearcode/crab/log"
6+
"dearcode.net/crab/log"
77

8-
"github.com/dearcode/netpi/pkg/agent"
8+
"dearcode.net/netpi/pkg/agent"
99
)
1010

1111
var (

cmd/proxyd/agent.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"net"
55
"strings"
66

7-
"github.com/dearcode/crab/log"
7+
"dearcode.net/crab/log"
88

9-
"github.com/dearcode/netpi/pkg/meta"
10-
"github.com/dearcode/netpi/pkg/pool"
9+
"dearcode.net/netpi/pkg/meta"
10+
"dearcode.net/netpi/pkg/pool"
1111
)
1212

1313
type agentServer struct {

cmd/proxyd/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package main
33
import (
44
"flag"
55

6-
"github.com/dearcode/crab/log"
7-
"github.com/dearcode/doodle/service"
6+
"dearcode.net/crab/log"
7+
"dearcode.net/doodle/pkg/service"
88

9-
_ "github.com/dearcode/netpi/pkg/pool"
10-
"github.com/dearcode/netpi/pkg/proxy"
9+
_ "dearcode.net/netpi/pkg/pool"
10+
"dearcode.net/netpi/pkg/proxy"
1111
)
1212

1313
type server struct {

0 commit comments

Comments
 (0)