Skip to content

Commit 5c3b85f

Browse files
committed
x/wasihttp: add Go module and Makefile
Signed-off-by: Jiaxiao Zhou <[email protected]>
1 parent 74a3348 commit 5c3b85f

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

x/wasihttp/Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.PHONY: tools
2+
tools:
3+
go generate -tags tools ./...
4+
5+
.PHONY: go-bindings
6+
go-bindings:
7+
go run go.bytecodealliance.org/cmd/wit-bindgen-go generate -o internal/ ./wit

x/wasihttp/go.mod

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module go.bytecodealliance.org/x/wasihttp
2+
3+
go 1.23.0
4+
5+
require go.bytecodealliance.org/cm v0.1.0

x/wasihttp/go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
go.bytecodealliance.org/cm v0.1.0 h1:78Rk4d5rgir5Hm+LMFpDWhjmFBWrKDFPSKUwDBj+nwo=
2+
go.bytecodealliance.org/cm v0.1.0/go.mod h1:NZ2UT0DyGhBfpIPOxPMCuG6g1YTR4YF3xweD7mHX5VQ=

0 commit comments

Comments
 (0)