fixing bug - proper name in go.mod file
This commit is contained in:
parent
3e8a006611
commit
46b7e5cb32
4
set.go
4
set.go
@ -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 {
|
||||||
|
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user