11 lines
112 B
Go
11 lines
112 B
Go
package main
|
|
|
|
import (
|
|
"syscall/js"
|
|
)
|
|
|
|
func main() {
|
|
js.Global().Set("dither", Dither())
|
|
<-make(chan bool)
|
|
}
|