new package 'commmon' - move funky, stack, voc

This commit is contained in:
Helmut Merz 2023-07-21 09:14:06 +02:00
parent ec6172f07e
commit a64f621997
6 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@
package voc package voc
import ( import (
"git.sr.ht/~cco/go-scopes/lib/funky" "git.sr.ht/~cco/go-scopes/common/funky"
) )
type VocData[V any] map[string][]V type VocData[V any] map[string][]V

View file

@ -3,12 +3,12 @@ package scopes_test
import ( import (
tbase "testing" tbase "testing"
"git.sr.ht/~cco/go-scopes/forge/stack" "git.sr.ht/~cco/go-scopes/common/stack"
"git.sr.ht/~cco/go-scopes/forge/voc" "git.sr.ht/~cco/go-scopes/common/voc"
"git.sr.ht/~cco/go-scopes/testing" "git.sr.ht/~cco/go-scopes/testing"
) )
func TestForge(tb *tbase.T) { func TestCommon(tb *tbase.T) {
t := testing.SetUp(tb) t := testing.SetUp(tb)
t.Run("stack", StackTest) t.Run("stack", StackTest)
t.Run("voc", VocTest) t.Run("voc", VocTest)

View file

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
tbase "testing" tbase "testing"
"git.sr.ht/~cco/go-scopes/lib/funky" "git.sr.ht/~cco/go-scopes/common/funky"
"git.sr.ht/~cco/go-scopes/testing" "git.sr.ht/~cco/go-scopes/testing"
) )