├── .gitignore ├── README.md ├── example └── main.go ├── go.mod └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dImrich/tinygo-wasmserve/HEAD/README.md -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dImrich/tinygo-wasmserve/HEAD/example/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/dImrich/tinygo-wasmserve 2 | 3 | go 1.14 -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dImrich/tinygo-wasmserve/HEAD/main.go --------------------------------------------------------------------------------