1
0
mirror of https://github.com/taigrr/wasm-experiments synced 2026-03-26 14:22:31 -07:00
Files
wasm-experiments/vendor/github.com/dave/wasmgo/config/hosts.prod.go
Johan Brandhorst 31e31e865c Add jsgo.io example
2018-08-15 17:23:29 +01:00

20 lines
251 B
Go

// +build !dev,!local
package config
const (
LOCAL = false
)
var Host = map[string]string{
Wasm: "wasm.jsgo.io",
Pkg: "pkg.jsgo.io",
Index: "jsgo.io",
}
var Protocol = map[string]string{
Wasm: "https",
Pkg: "https",
Index: "https",
}