mirror of
https://github.com/esimov/pigo.git
synced 2025-10-08 01:20:07 +08:00
11 lines
131 B
Go
11 lines
131 B
Go
package main
|
|
|
|
import (
|
|
"github.com/esimov/pigo/wasm/canvas"
|
|
)
|
|
|
|
func main() {
|
|
c := canvas.NewCanvas()
|
|
c.StartWebcam().Render()
|
|
}
|