diff options
Diffstat (limited to 'menu')
| -rw-r--r-- | menu/banner.go | 8 | ||||
| -rw-r--r-- | menu/confirm.go | 6 | ||||
| -rw-r--r-- | menu/git.go | 4 | ||||
| -rw-r--r-- | menu/icon.go | 2 | ||||
| -rw-r--r-- | menu/menu.go | 4 | ||||
| -rw-r--r-- | menu/model.go | 10 | ||||
| -rw-r--r-- | menu/source.go | 4 | ||||
| -rw-r--r-- | menu/state.go | 2 | ||||
| -rw-r--r-- | menu/target.go | 6 |
9 files changed, 23 insertions, 23 deletions
diff --git a/menu/banner.go b/menu/banner.go index cb809c0..0b51dea 100644 --- a/menu/banner.go +++ b/menu/banner.go @@ -1,11 +1,11 @@ package menu import ( + "git.sr.ht/~ewy/pik/flags" + "git.sr.ht/~ewy/pik/menu/style" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/paths" "github.com/charmbracelet/lipgloss" - "github.com/ewy1/pik/flags" - "github.com/ewy1/pik/menu/style" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/paths" "os/exec" "strings" ) diff --git a/menu/confirm.go b/menu/confirm.go index 30c3a48..a9f644a 100644 --- a/menu/confirm.go +++ b/menu/confirm.go @@ -3,10 +3,10 @@ package menu import ( "bufio" "fmt" + "git.sr.ht/~ewy/pik/flags" + "git.sr.ht/~ewy/pik/menu/style" + "git.sr.ht/~ewy/pik/model" "github.com/charmbracelet/lipgloss" - "github.com/ewy1/pik/flags" - "github.com/ewy1/pik/menu/style" - "github.com/ewy1/pik/model" "io" "os" "slices" diff --git a/menu/git.go b/menu/git.go index ff3c8e7..8dc413e 100644 --- a/menu/git.go +++ b/menu/git.go @@ -1,9 +1,9 @@ package menu import ( + "git.sr.ht/~ewy/pik/menu/style" + "git.sr.ht/~ewy/pik/model" "github.com/charmbracelet/lipgloss" - "github.com/ewy1/pik/menu/style" - "github.com/ewy1/pik/model" "strconv" ) diff --git a/menu/icon.go b/menu/icon.go index 102706e..c614ce3 100644 --- a/menu/icon.go +++ b/menu/icon.go @@ -1,8 +1,8 @@ package menu import ( + "git.sr.ht/~ewy/pik/menu/style" "github.com/charmbracelet/lipgloss" - "github.com/ewy1/pik/menu/style" "strings" ) diff --git a/menu/menu.go b/menu/menu.go index 2593d15..123c165 100644 --- a/menu/menu.go +++ b/menu/menu.go @@ -2,9 +2,9 @@ package menu import ( "errors" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/spool" tea "github.com/charmbracelet/bubbletea" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/spool" ) var WrongModelTypeError = errors.New("wrong model type") diff --git a/menu/model.go b/menu/model.go index 302315a..68d55e3 100644 --- a/menu/model.go +++ b/menu/model.go @@ -1,14 +1,14 @@ package menu import ( + "git.sr.ht/~ewy/pik/flags" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/motd" + "git.sr.ht/~ewy/pik/spool" + "git.sr.ht/~ewy/pik/viewport" "github.com/charmbracelet/bubbles/textinput" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/x/term" - "github.com/ewy1/pik/flags" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/motd" - "github.com/ewy1/pik/spool" - "github.com/ewy1/pik/viewport" "github.com/spf13/pflag" "os" "strings" diff --git a/menu/source.go b/menu/source.go index 2d02a5d..2384286 100644 --- a/menu/source.go +++ b/menu/source.go @@ -1,9 +1,9 @@ package menu import ( + "git.sr.ht/~ewy/pik/menu/style" + "git.sr.ht/~ewy/pik/model" "github.com/charmbracelet/lipgloss" - "github.com/ewy1/pik/menu/style" - "github.com/ewy1/pik/model" "slices" "strings" ) diff --git a/menu/state.go b/menu/state.go index 55da10b..5ccc11d 100644 --- a/menu/state.go +++ b/menu/state.go @@ -1,8 +1,8 @@ package menu import ( + "git.sr.ht/~ewy/pik/menu/style" "github.com/charmbracelet/lipgloss" - "github.com/ewy1/pik/menu/style" ) var ( diff --git a/menu/target.go b/menu/target.go index ee31889..ad373cc 100644 --- a/menu/target.go +++ b/menu/target.go @@ -1,10 +1,10 @@ package menu import ( + "git.sr.ht/~ewy/pik/menu/style" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/viewport" "github.com/charmbracelet/lipgloss" - "github.com/ewy1/pik/menu/style" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/viewport" ) var ( |
