fixing bug - proper name in go.mod file

This commit is contained in:
William Dillon 2025-05-07 12:35:59 -04:00
parent 3e8a006611
commit 46b7e5cb32
3 changed files with 5 additions and 4 deletions

2
go.mod
View File

@ -1,3 +1,3 @@
module set module code.wmdillon.com/GoAPI/set
go 1.24.3 go 1.24.3

4
set.go
View File

@ -1,8 +1,8 @@
package set package set
import ( import (
"set/simpleset" "code.wmdillon.com/GoAPI/set/simpleset"
"set/threadsafeset" "code.wmdillon.com/GoAPI/set/threadsafeset"
) )
type Set[T comparable] interface { type Set[T comparable] interface {

View File

@ -1,8 +1,9 @@
package threadsafeset package threadsafeset
import ( import (
"set/simpleset"
"sync" "sync"
"code.wmdillon.com/GoAPI/set/simpleset"
) )
type ThreadsafeSet[T comparable] struct { type ThreadsafeSet[T comparable] struct {