Add go mod

This commit is contained in:
Kevin Cotugno 2020-09-28 20:26:25 -07:00
parent 4291bfb210
commit 442e406f55
4 changed files with 20 additions and 2 deletions

10
go.mod Normal file
View File

@ -0,0 +1,10 @@
module git.cotugno.family/kevin/spectator
go 1.15
require (
github.com/emirpasic/gods v1.12.0
github.com/gorilla/websocket v1.4.2
github.com/shopspring/decimal v1.2.0
golang.org/x/sys v0.0.0-20200928205150-006507a75852
)

8
go.sum Normal file
View File

@ -0,0 +1,8 @@
github.com/emirpasic/gods v1.12.0 h1:QAUIPSaCu4G+POclxeqb3F+WPpdKqFGlw36+yOzGlrg=
github.com/emirpasic/gods v1.12.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o=
github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=
github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ=
github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=
golang.org/x/sys v0.0.0-20200928205150-006507a75852 h1:sXxgOAXy8JwHhZnPuItAlUtwIlxrlEqi28mKhUR+zZY=
golang.org/x/sys v0.0.0-20200928205150-006507a75852/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

View File

@ -1,7 +1,7 @@
package main package main
import ( import (
"git.kevincotugno.com/kcotugno/spectator/exhibit" "git.cotugno.family/kevin/spectator/exhibit"
) )
type ListEntry struct { type ListEntry struct {

View File

@ -1,7 +1,7 @@
package main package main
import ( import (
"git.kevincotugno.com/kcotugno/spectator/exhibit" "git.cotugno.family/kevin/spectator/exhibit"
"github.com/emirpasic/gods/trees/redblacktree" "github.com/emirpasic/gods/trees/redblacktree"
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"github.com/shopspring/decimal" "github.com/shopspring/decimal"