chore: updated go module

This commit is contained in:
Dan Anglin 2023-02-14 07:54:10 +00:00
parent 0839d566b5
commit 3baa13b05f
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638
7 changed files with 21 additions and 11 deletions

View file

@ -3,7 +3,7 @@ package main
import ( import (
"fmt" "fmt"
"forge.dananglin.me.uk/code/dananglin/canal/internal/ui" "codeflow.dananglin.me.uk/apollo/canal/internal/ui"
) )
func main() { func main() {

16
go.mod
View file

@ -1,10 +1,20 @@
module forge.dananglin.me.uk/code/dananglin/canal module codeflow.dananglin.me.uk/apollo/canal
go 1.16 go 1.19
require ( require (
github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1 github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1
github.com/magefile/mage v1.11.0 github.com/magefile/mage v1.14.0
github.com/rivo/tview v0.0.0-20210923051754-2cb20002bc4c github.com/rivo/tview v0.0.0-20210923051754-2cb20002bc4c
go.etcd.io/bbolt v1.3.6 go.etcd.io/bbolt v1.3.6
) )
require (
github.com/gdamore/encoding v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
golang.org/x/sys v0.0.0-20210309074719-68d13333faf2 // indirect
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
golang.org/x/text v0.3.6 // indirect
)

4
go.sum
View file

@ -4,8 +4,8 @@ github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1 h1:QqwPZCwh/k1u
github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1/go.mod h1:Az6Jt+M5idSED2YPGtwnfJV0kXohgdCBPmHGSYc1r04= github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1/go.mod h1:Az6Jt+M5idSED2YPGtwnfJV0kXohgdCBPmHGSYc1r04=
github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY= github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY=
github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0= github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
github.com/magefile/mage v1.11.0 h1:C/55Ywp9BpgVVclD3lRnSYCwXTYxmSppIgLeDYlNuls= github.com/magefile/mage v1.14.0 h1:6QDX3g6z1YvJ4olPhT1wksUcSa/V0a1B+pJb73fBjyo=
github.com/magefile/mage v1.11.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A= github.com/magefile/mage v1.14.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A=
github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU= github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU=
github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/rivo/tview v0.0.0-20210923051754-2cb20002bc4c h1:ye4bWm8SafYmr0DADOKSfeVZ1Swzm9aLW+baCOcHDWE= github.com/rivo/tview v0.0.0-20210923051754-2cb20002bc4c h1:ye4bWm8SafYmr0DADOKSfeVZ1Swzm9aLW+baCOcHDWE=

View file

@ -6,7 +6,7 @@ import (
"fmt" "fmt"
"sort" "sort"
"forge.dananglin.me.uk/code/dananglin/canal/internal/database" "codeflow.dananglin.me.uk/apollo/canal/internal/database"
bolt "go.etcd.io/bbolt" bolt "go.etcd.io/bbolt"
) )

View file

@ -7,7 +7,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"forge.dananglin.me.uk/code/dananglin/canal/internal/board" "codeflow.dananglin.me.uk/apollo/canal/internal/board"
bolt "go.etcd.io/bbolt" bolt "go.etcd.io/bbolt"
) )

View file

@ -9,8 +9,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"forge.dananglin.me.uk/code/dananglin/canal/internal/board" "codeflow.dananglin.me.uk/apollo/canal/internal/board"
"forge.dananglin.me.uk/code/dananglin/canal/internal/database" "codeflow.dananglin.me.uk/apollo/canal/internal/database"
bolt "go.etcd.io/bbolt" bolt "go.etcd.io/bbolt"
) )

View file

@ -3,7 +3,7 @@ package ui
import ( import (
"fmt" "fmt"
"forge.dananglin.me.uk/code/dananglin/canal/internal/board" "codeflow.dananglin.me.uk/apollo/canal/internal/board"
"github.com/rivo/tview" "github.com/rivo/tview"
bolt "go.etcd.io/bbolt" bolt "go.etcd.io/bbolt"
) )