Skip to content

Commit

Permalink
fix: unused args (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
shipengqi authored Feb 18, 2024
1 parent de163a6 commit af0316c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gosh.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func New(opts *Options) (*Client, error) {
c := &Client{
opts: opts,
auth: auth,
callback: func(hostname string, remote net.Addr, key ssh.PublicKey) error {
callback: func(_ string, _ net.Addr, _ ssh.PublicKey) error {
return nil
},
}
Expand Down

0 comments on commit af0316c

Please sign in to comment.