Skip to content

Commit c769280

Browse files
committed
chore(): fix references
1 parent ba9942f commit c769280

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

client/client.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@ import (
1212
"strings"
1313
"time"
1414

15+
chshare "github.com/alfonso-presa/chisel/share"
1516
"github.com/gorilla/websocket"
1617
"github.com/jpillora/backoff"
17-
chshare "github.com/jpillora/chisel/share"
1818
"golang.org/x/crypto/ssh"
1919
)
2020

2121
//Config represents a client configuration
2222
type Config struct {
23-
shared *chshare.Config
24-
Fingerprint string
25-
Auth string
26-
KeepAlive time.Duration
27-
MaxRetryCount int
28-
MaxRetryInterval time.Duration
29-
Server string
23+
shared *chshare.Config
24+
Fingerprint string
25+
Auth string
26+
KeepAlive time.Duration
27+
MaxRetryCount int
28+
MaxRetryInterval time.Duration
29+
Server string
3030
SkipTlsVerification bool
31-
HTTPProxy string
32-
Remotes []string
33-
HostHeader string
34-
HttpHeaders map[string]string
31+
HTTPProxy string
32+
Remotes []string
33+
HostHeader string
34+
HttpHeaders map[string]string
3535
}
3636

3737
//Client represents a client instance

0 commit comments

Comments
 (0)