PaletteSwitcher/main.go

11 lines
120 B
Go
Raw Normal View History

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