refactor: rename to vanity url

This commit is contained in:
2023-02-26 22:33:01 -07:00
parent 3f3ea4439c
commit 0621e2e815
60 changed files with 214 additions and 217 deletions

View File

@@ -5,7 +5,7 @@ import (
"sort"
"strings"
"github.com/sour-is/ev/pkg/math"
"go.sour.is/ev/pkg/math"
)
type Set[T comparable] map[T]struct{}
@@ -36,7 +36,7 @@ func (s Set[T]) Delete(items ...T) Set[T] {
func (s Set[T]) Equal(e Set[T]) bool {
for k := range s {
if _, ok := e[k]; !ok{
if _, ok := e[k]; !ok {
return false
}
}

View File

@@ -5,7 +5,7 @@ import (
"testing"
"github.com/matryer/is"
"github.com/sour-is/ev/pkg/set"
"go.sour.is/ev/pkg/set"
)
func TestStringSet(t *testing.T) {