diff options
| author | Shulhan <ms@kilabit.info> | 2023-05-14 18:51:31 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-05-14 19:02:53 +0700 |
| commit | 37be5f25b644b63a6c6a21596ac376fe6b2cbd69 (patch) | |
| tree | a88d3303023d0238f6fb8115293521077b259658 /session.go | |
| parent | 0d7c4b315cdb8a7a5b90fc9e4ae4b99b2cd42082 (diff) | |
| download | awwan-37be5f25b644b63a6c6a21596ac376fe6b2cbd69.tar.xz | |
all: update module share and ciigo to latest version
This changes replace share package lib/io with lib/os, since the former
has been deprecated.
Diffstat (limited to 'session.go')
| -rw-r--r-- | session.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ import ( "github.com/shuLhan/share/lib/ascii" "github.com/shuLhan/share/lib/ini" - libio "github.com/shuLhan/share/lib/io" + libos "github.com/shuLhan/share/lib/os" "github.com/shuLhan/share/lib/ssh" "github.com/shuLhan/share/lib/ssh/config" "github.com/shuLhan/share/lib/ssh/sftp" @@ -113,7 +113,7 @@ func (ses *Session) Copy(stmt *Statement) (err error) { dest = stmt.args[0] - err = libio.Copy(dest, src) + err = libos.Copy(dest, src) if err != nil { return fmt.Errorf("%s: %w", logp, err) } |
