Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
vedhavyas committed Sep 23, 2019
1 parent e56a2c5 commit 21208d4
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func multiply(b *wasm.Bridge, a int) (int, error) {
}

func main() {
b, err := wasm.BridgeFromFile("test", "./examples/wasm/main.wasm", nil)
b, err := wasm.BridgeFromFile("test", "./examples/function-wasm/main.wasm", nil)
if err != nil {
panic(err)
}
Expand Down
File renamed without changes.
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/http-caller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

func main() {
b, err := wasm.BridgeFromFile("test", "./examples/http/main.wasm", nil)
b, err := wasm.BridgeFromFile("test", "./examples/http-wasm/main.wasm", nil)
if err != nil {
panic(err)
}
Expand Down
File renamed without changes.
Binary file not shown.

0 comments on commit 21208d4

Please sign in to comment.