Replaced references to github.com with git.tebibyte.media

This commit is contained in:
Sasha Koshka
2022-08-28 12:37:35 -04:00
parent f976fe697a
commit 17aca49602
31 changed files with 47 additions and 47 deletions

View File

@@ -10,7 +10,7 @@ import (
rw "github.com/mattn/go-runewidth"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
type BarChart struct {

View File

@@ -8,7 +8,7 @@ import (
"fmt"
"image"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
type Gauge struct {

View File

@@ -8,7 +8,7 @@ import (
"image"
"image/color"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
type Image struct {

View File

@@ -9,7 +9,7 @@ import (
rw "github.com/mattn/go-runewidth"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
type List struct {

View File

@@ -7,7 +7,7 @@ package widgets
import (
"image"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
type Paragraph struct {

View File

@@ -4,7 +4,7 @@ import (
"image"
"math"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
const (

View File

@@ -8,7 +8,7 @@ import (
"fmt"
"image"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
// Plot has two modes: line(default) and scatter.

View File

@@ -7,7 +7,7 @@ package widgets
import (
"image"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
// Sparkline is like: ▅▆▂▂▅▇▂▂▃▆▆▆▅▃. The data points should be non-negative integers.

View File

@@ -10,7 +10,7 @@ import (
rw "github.com/mattn/go-runewidth"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
type StackedBarChart struct {

View File

@@ -7,7 +7,7 @@ package widgets
import (
"image"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
/*Table is like:

View File

@@ -7,7 +7,7 @@ package widgets
import (
"image"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
)
// TabPane is a renderable widget which can be used to conditionally render certain tabs/views.

View File

@@ -5,7 +5,7 @@ import (
"image"
"strings"
. "github.com/gizak/termui/v3"
. "git.tebitea.media/sashakoshka/termui/v3"
rw "github.com/mattn/go-runewidth"
)