Skip to content

Commit

Permalink
add github prefix to all imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hujun-open committed Oct 20, 2020
1 parent 682d339 commit 2fb023b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 14 deletions.
3 changes: 2 additions & 1 deletion chap/chap.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import (
"crypto/md5"
"fmt"
"time"
"zouppp/lcp"

"github.com/hujun-open/zouppp/lcp"

"go.uber.org/zap"
)
Expand Down
11 changes: 6 additions & 5 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ import (
"sync"
"sync/atomic"
"time"
"zouppp/chap"
"zouppp/datapath"
"zouppp/lcp"
"zouppp/pap"
"zouppp/pppoe"

"github.com/hujun-open/zouppp/chap"
"github.com/hujun-open/zouppp/datapath"
"github.com/hujun-open/zouppp/lcp"
"github.com/hujun-open/zouppp/pap"
"github.com/hujun-open/zouppp/pppoe"

"github.com/hujun-open/etherconn"
"github.com/hujun-open/myaddr"
Expand Down
5 changes: 3 additions & 2 deletions client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ import (
"sync"
"testing"
"time"
"zouppp/lcp"
"zouppp/pppoe"

"github.com/hujun-open/zouppp/lcp"
"github.com/hujun-open/zouppp/pppoe"

"github.com/hujun-open/etherconn"
)
Expand Down
3 changes: 2 additions & 1 deletion datapath/datapath_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import (
"context"
"fmt"
"net"
"zouppp/lcp"

"github.com/hujun-open/zouppp/lcp"

"github.com/songgao/water"
"github.com/vishvananda/netlink"
Expand Down
3 changes: 2 additions & 1 deletion pap/pap.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ package pap
import (
"fmt"
"time"
"zouppp/lcp"

"github.com/hujun-open/zouppp/lcp"

"go.uber.org/zap"
)
Expand Down
7 changes: 3 additions & 4 deletions zouppp.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,11 @@ import (
_ "net/http/pprof"
"runtime"
"time"
"zouppp/client"
"zouppp/pppoe"

"zouppp/lcp"

"github.com/hujun-open/etherconn"
"github.com/hujun-open/zouppp/client"
"github.com/hujun-open/zouppp/lcp"
"github.com/hujun-open/zouppp/pppoe"
"go.uber.org/zap"
)

Expand Down

0 comments on commit 2fb023b

Please sign in to comment.