diff --git a/README.md b/README.md index d1f59cd4392fce9f8b2b541862e69fa684400039..a898480b75ee28ead215556ad146c7e9a3cdf842 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ global.Go = class { go: { // ... // func Throw(exception string, message string) - 'gitlab.com/elixxir/xxdk-wasm/utils.throw': (sp) => { + 'gitlab.com/elixxir/wasm-utils/utils.throw': (sp) => { const exception = loadString(sp + 8) const message = loadString(sp + 24) throw globalThis[exception](message) diff --git a/test/wasm_exec.js b/test/wasm_exec.js index c613dfc656f2799b6b3c922f59003cd3347454a7..07649aee63e71d945a3b558a249faa7240be4416 100644 --- a/test/wasm_exec.js +++ b/test/wasm_exec.js @@ -503,7 +503,7 @@ }, // func throw(exception string, message string) - 'gitlab.com/elixxir/xxdk-wasm/utils.throw': (sp) => { + 'gitlab.com/elixxir/wasm-utils/utils.throw': (sp) => { const exception = loadString(sp + 8) const message = loadString(sp + 24) throw globalThis[exception](message) diff --git a/wasm/collective.go b/wasm/collective.go index 7afe791218cab6268f39221bb526b3cef0b17014..5b35b3d4b597f0bf79543e1f38cb741c49ee8d24 100644 --- a/wasm/collective.go +++ b/wasm/collective.go @@ -13,7 +13,7 @@ import ( "syscall/js" "gitlab.com/elixxir/client/v4/bindings" - "gitlab.com/elixxir/xxdk-wasm/utils" + "gitlab.com/elixxir/wasm-utils/utils" ) //////////////////////////////////////////////////////////////////////////////// diff --git a/worker/README.md b/worker/README.md index e5027c3fe7d366d5096bb9b09406ea6ab6edaa2f..18d21f12fb5115a92941451c2f9aa0667ca3fa9a 100644 --- a/worker/README.md +++ b/worker/README.md @@ -18,7 +18,7 @@ package main import ( "fmt" - "gitlab.com/elixxir/xxdk-wasm/utils/worker" + "gitlab.com/elixxir/wasm-utils/utils/worker" ) func main() { @@ -51,4 +51,4 @@ wm, err := worker.NewManager("workerWasm.js", "exampleWebWorker") if err != nil { return nil, err } -``` \ No newline at end of file +```