Rpc in go

This commit is contained in:
2024-11-06 12:00:28 +01:00
parent eb16dd94da
commit 1c05b5597e
11 changed files with 419 additions and 1 deletions

8
src/rpc_go/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
# Running as native wasm runtime
FROM scratch
COPY ./build/server.wasm .
EXPOSE 8080
CMD ["./server.wasm"]