Skip to content

Commit

Permalink
Fix import break.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikoto2000 committed Dec 2, 2024
1 parent 468db7b commit 23e15db
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions devcontainer/devcontainer.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"strconv"
"strings"

"github.com/mikoto2000/devcontainer.vim/docker"
"github.com/mikoto2000/devcontainer.vim/dockercompose"
"github.com/mikoto2000/devcontainer.vim/tools"
"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/docker"
"github.com/mikoto2000/devcontainer.vim/v3/dockercompose"
"github.com/mikoto2000/devcontainer.vim/v3/tools"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

const containerCommand = "docker"
Expand Down
2 changes: 1 addition & 1 deletion docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"runtime"
"strings"

"github.com/mikoto2000/devcontainer.vim/tools"
"github.com/mikoto2000/devcontainer.vim/v3/tools"
)

const containerCommand = "docker"
Expand Down
10 changes: 5 additions & 5 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import (
"github.com/manifoldco/promptui"
"github.com/urfave/cli/v2"

"github.com/mikoto2000/devcontainer.vim/devcontainer"
"github.com/mikoto2000/devcontainer.vim/docker"
"github.com/mikoto2000/devcontainer.vim/oras"
"github.com/mikoto2000/devcontainer.vim/tools"
"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/devcontainer"
"github.com/mikoto2000/devcontainer.vim/v3/docker"
"github.com/mikoto2000/devcontainer.vim/v3/oras"
"github.com/mikoto2000/devcontainer.vim/v3/tools"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

type IndexRoot struct {
Expand Down
2 changes: 1 addition & 1 deletion tools/clipboard-data-receiver.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"text/template"
"time"

"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

const CdrFileName = "clipboard-data-receiver"
Expand Down
2 changes: 1 addition & 1 deletion tools/devcontainer.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"
"text/template"

"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

// devcontainer/cli のツール情報
Expand Down
2 changes: 1 addition & 1 deletion tools/nvim_darwin_arm64.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"text/template"

"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

// Vim のダウンロード URL
Expand Down
2 changes: 1 addition & 1 deletion tools/nvim_linux_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"text/template"

"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

// Vim のダウンロード URL
Expand Down
2 changes: 1 addition & 1 deletion tools/nvim_windows_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"text/template"

"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

// Vim のダウンロード URL
Expand Down
2 changes: 1 addition & 1 deletion tools/tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"path/filepath"
"runtime"

"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

// ツール情報
Expand Down
2 changes: 1 addition & 1 deletion tools/vim_darwin_arm64.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"text/template"

"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

// Vim のダウンロード URL
Expand Down
2 changes: 1 addition & 1 deletion tools/vim_linux_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"text/template"

"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

// Vim のダウンロード URL
Expand Down
2 changes: 1 addition & 1 deletion tools/vim_windows_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"text/template"

"github.com/mikoto2000/devcontainer.vim/util"
"github.com/mikoto2000/devcontainer.vim/v3/util"
)

// Vim のダウンロード URL
Expand Down

0 comments on commit 23e15db

Please sign in to comment.