diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..fa3380b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+# IDE
+.vscode
+.fleet
+.idea
\ No newline at end of file
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 195d65e..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-# You can override the included template(s) by including variable overrides
-# SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
-# Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/pipeline/#customization
-# Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings
-# Container Scanning customization: https://docs.gitlab.com/ee/user/application_security/container_scanning/#customizing-the-container-scanning-settings
-# Note that environment variables can be set in several places
-# See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
-stages:
-- test
-sast:
- stage: test
-include:
-- template: Security/SAST.gitlab-ci.yml
diff --git a/.idea/.gitignore b/.idea/.gitignore
deleted file mode 100644
index 13566b8..0000000
--- a/.idea/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-# Default ignored files
-/shelf/
-/workspace.xml
-# Editor-based HTTP Client requests
-/httpRequests/
-# Datasource local storage ignored files
-/dataSources/
-/dataSources.local.xml
diff --git a/.idea/TUI.iml b/.idea/TUI.iml
deleted file mode 100644
index 5e764c4..0000000
--- a/.idea/TUI.iml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/discord.xml b/.idea/discord.xml
deleted file mode 100644
index 104c42f..0000000
--- a/.idea/discord.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index c400fe6..0000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
deleted file mode 100644
index 35eb1dd..0000000
--- a/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/confirmation/confirmation.go b/confirmation/confirmation.go
index a43e6b5..0bfba1b 100644
--- a/confirmation/confirmation.go
+++ b/confirmation/confirmation.go
@@ -1,8 +1,8 @@
package confirmation
import (
+ "egtyl.xyz/omnibill/tui"
"fmt"
- "gitlab.com/omnibill/tui"
"strings"
"golang.org/x/term"
diff --git a/displaylist/displaylist.go b/displaylist/displaylist.go
index f9477a3..b97dc18 100644
--- a/displaylist/displaylist.go
+++ b/displaylist/displaylist.go
@@ -1,8 +1,8 @@
package displaylist
import (
+ "egtyl.xyz/omnibill/tui"
"fmt"
- "gitlab.com/omnibill/tui"
)
type ListOptions struct {
diff --git a/go.mod b/go.mod
index 5392218..1363c3d 100644
--- a/go.mod
+++ b/go.mod
@@ -1,13 +1,13 @@
-module gitlab.com/omnibill/tui
+module egtyl.xyz/omnibill/tui
go 1.23.2
require (
github.com/nicksnyder/go-i18n/v2 v2.4.1
- golang.org/x/term v0.25.0
+ golang.org/x/term v0.26.0
)
require (
- golang.org/x/sys v0.26.0 // indirect
+ golang.org/x/sys v0.27.0 // indirect
golang.org/x/text v0.19.0 // indirect
)
diff --git a/go.sum b/go.sum
index 7ffa050..f697031 100644
--- a/go.sum
+++ b/go.sum
@@ -1,13 +1,15 @@
-git.eggactyl.cloud/Eggactyl/tui v0.0.0-20240808144724-4c617ba4b5e2 h1:Moamm0JZr2J+DnkxNonZMmTjIC6lZxMMKQ93sPs4OfU=
-git.eggactyl.cloud/Eggactyl/tui v0.0.0-20240808144724-4c617ba4b5e2/go.mod h1:nDnIAL3nj3ZRfJIjESD752RtHbInjn2ASxBeeRgSv1g=
github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0=
github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
github.com/nicksnyder/go-i18n/v2 v2.4.1 h1:zwzjtX4uYyiaU02K5Ia3zSkpJZrByARkRB4V3YPrr0g=
github.com/nicksnyder/go-i18n/v2 v2.4.1/go.mod h1:++Pl70FR6Cki7hdzZRnEEqdc2dJt+SAGotyFg/SvZMk=
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
+golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.25.0 h1:WtHI/ltw4NvSUig5KARz9h521QvRC8RmF/cuYqifU24=
golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M=
+golang.org/x/term v0.26.0 h1:WEQa6V3Gja/BhNxg540hBip/kkaYtRg3cxg4oXSw4AU=
+golang.org/x/term v0.26.0/go.mod h1:Si5m1o57C5nBNQo5z1iq+XDijt21BDBDp2bK0QI8e3E=
golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM=
golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
diff --git a/list/list.go b/list/list.go
index 7823603..17859c5 100644
--- a/list/list.go
+++ b/list/list.go
@@ -2,8 +2,8 @@ package list
import (
"bufio"
+ "egtyl.xyz/omnibill/tui"
"fmt"
- "gitlab.com/omnibill/tui"
"os"
"regexp"
"sort"
diff --git a/progress/progress.go b/progress/progress.go
index b598af2..cfeb845 100644
--- a/progress/progress.go
+++ b/progress/progress.go
@@ -1,8 +1,8 @@
package progress
import (
+ "egtyl.xyz/omnibill/tui"
"fmt"
- "gitlab.com/omnibill/tui"
"math"
"regexp"
"strconv"
diff --git a/textinput/text.go b/textinput/text.go
index 49d462c..ec31972 100644
--- a/textinput/text.go
+++ b/textinput/text.go
@@ -1,9 +1,9 @@
package textinput
import (
+ "egtyl.xyz/omnibill/tui"
+ "egtyl.xyz/omnibill/tui/validators"
"fmt"
- "gitlab.com/omnibill/tui"
- "gitlab.com/omnibill/tui/validators"
"golang.org/x/term"
)