9 lines
169 B
Go
9 lines
169 B
Go
//go:build js || wasm
|
|
|
|
package interrupt
|
|
|
|
func doRestart() {
|
|
// Restart is not supported in WASM/JS environment
|
|
D.Ln("restart not supported in WASM/JS environment")
|
|
}
|