forked from TrueCloudLab/rclone
build: fix up package paths after repo move
git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g' goimports -w `find . -name \*.go`
This commit is contained in:
parent
4ba6532915
commit
57d5de6fba
393 changed files with 1458 additions and 1447 deletions
17
vendor/github.com/nsf/termbox-go/api.go
generated
vendored
17
vendor/github.com/nsf/termbox-go/api.go
generated
vendored
|
@ -2,13 +2,16 @@
|
|||
|
||||
package termbox
|
||||
|
||||
import "github.com/mattn/go-runewidth"
|
||||
import "fmt"
|
||||
import "os"
|
||||
import "os/signal"
|
||||
import "syscall"
|
||||
import "runtime"
|
||||
import "time"
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"os/signal"
|
||||
"runtime"
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
runewidth "github.com/mattn/go-runewidth"
|
||||
)
|
||||
|
||||
// public API
|
||||
|
||||
|
|
2
vendor/github.com/nsf/termbox-go/termbox_windows.go
generated
vendored
2
vendor/github.com/nsf/termbox-go/termbox_windows.go
generated
vendored
|
@ -4,7 +4,7 @@ import "math"
|
|||
import "syscall"
|
||||
import "unsafe"
|
||||
import "unicode/utf16"
|
||||
import "github.com/mattn/go-runewidth"
|
||||
import runewidth "github.com/mattn/go-runewidth"
|
||||
|
||||
type (
|
||||
wchar uint16
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue