fix: add involves edge from task to agent:nomos at creation
Plus sync vendor directory for Docker build compatibility.
This commit is contained in:
9
vendor/github.com/wailsapp/wails/v3/internal/hash/fnv.go
generated
vendored
Normal file
9
vendor/github.com/wailsapp/wails/v3/internal/hash/fnv.go
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
package hash
|
||||
|
||||
import "hash/fnv"
|
||||
|
||||
func Fnv(s string) uint32 {
|
||||
h := fnv.New32a()
|
||||
_, _ = h.Write([]byte(s)) // Hash implementations never return errors (see https://pkg.go.dev/hash#Hash)
|
||||
return h.Sum32()
|
||||
}
|
||||
Reference in New Issue
Block a user