PaletteSwitcher/src/main.go
2021-12-12 17:50:58 +01:00

11 lines
112 B
Go

package main
import (
"syscall/js"
)
func main() {
js.Global().Set("dither", Dither())
<-make(chan bool)
}