Move "logger" package to under types, now that we have it.

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
Brad Fitzpatrick
2020-02-14 19:23:16 -08:00
committed by Brad Fitzpatrick
parent dec5d64593
commit 2896be60db
19 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ import (
"golang.org/x/crypto/curve25519"
"golang.org/x/crypto/nacl/box"
"tailscale.com/logger"
"tailscale.com/types/logger"
)
type Client struct {
+1 -1
View File
@@ -23,7 +23,7 @@ import (
"golang.org/x/crypto/curve25519"
"golang.org/x/crypto/nacl/box"
"tailscale.com/logger"
"tailscale.com/types/logger"
)
const magic = 0x44c55250 // "DERP" with a non-ASCII high-bit
+1 -1
View File
@@ -23,7 +23,7 @@ import (
"sync"
"tailscale.com/derp"
"tailscale.com/logger"
"tailscale.com/types/logger"
)
// Client is a DERP-over-HTTP client.