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 (
"fmt"
"git.eggactyl.cloud/Eggactyl/tui"
"gitlab.com/omnibill/tui"
)
type ListOptions struct {

View file

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

View file

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