Skip to content
This repository has been archived by the owner on Apr 26, 2021. It is now read-only.

Commit

Permalink
Rewrite imports temporarily
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Rudenberg <jonathan@titanous.com>
  • Loading branch information
titanous committed Jul 4, 2017
1 parent 8f22218 commit d628573
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/9pr/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"time"

"github.com/chzyer/readline"
"github.com/docker/go-p9p"
"github.com/flynn/go-p9p"
"golang.org/x/net/context"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/9ps/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"net"
"strings"

"github.com/docker/go-p9p"
"github.com/docker/go-p9p/ufs"
"github.com/flynn/go-p9p"
"github.com/flynn/go-p9p/ufs"
"golang.org/x/net/context"
)

Expand Down
2 changes: 1 addition & 1 deletion ufs/fileref.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"sync"

p9p "github.com/docker/go-p9p"
p9p "github.com/flynn/go-p9p"
)

type FileRef struct {
Expand Down
2 changes: 1 addition & 1 deletion ufs/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sync"
"syscall"

"github.com/docker/go-p9p"
"github.com/flynn/go-p9p"
)

type session struct {
Expand Down
2 changes: 1 addition & 1 deletion ufs/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"syscall"

p9p "github.com/docker/go-p9p"
p9p "github.com/flynn/go-p9p"
)

func dirFromInfo(info os.FileInfo) p9p.Dir {
Expand Down

0 comments on commit d628573

Please sign in to comment.