remove broken imports

This commit is contained in:
Shane C. 2024-11-01 19:10:25 -04:00
parent 68d9e387c9
commit 3272382a91
Signed by: Shane C.
GPG key ID: E46B5FEA35B22FF9
3 changed files with 4 additions and 5 deletions

View file

@ -2,8 +2,7 @@ package displaylist
import ( import (
"fmt" "fmt"
"gitlab.com/omnibill/tui"
"git.eggactyl.cloud/Eggactyl/tui"
) )
type ListOptions struct { type ListOptions struct {

View file

@ -2,7 +2,7 @@ package progress
import ( import (
"fmt" "fmt"
"git.eggactyl.cloud/Eggactyl/tui" "gitlab.com/omnibill/tui"
"math" "math"
"regexp" "regexp"
"strconv" "strconv"

View file

@ -2,8 +2,8 @@ package textinput
import ( import (
"fmt" "fmt"
"git.eggactyl.cloud/Eggactyl/tui" "gitlab.com/omnibill/tui"
"git.eggactyl.cloud/Eggactyl/tui/validators" "gitlab.com/omnibill/tui/validators"
"golang.org/x/term" "golang.org/x/term"
) )