PaletteSwitcher/src/main.go

11 lines
112 B
Go
Raw Normal View History

2021-11-21 19:12:16 +00:00
package main
import (
"syscall/js"
)
func main() {
2021-12-12 16:50:58 +00:00
js.Global().Set("dither", Dither())
2021-11-21 19:12:16 +00:00
<-make(chan bool)
}