mirror of
https://github.com/playwright-community/playwright-go.git
synced 2026-06-03 21:02:27 +08:00
17 lines
238 B
Go
17 lines
238 B
Go
//go:build ignore
|
|
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/playwright-community/playwright-go"
|
|
)
|
|
|
|
func main() {
|
|
if err := playwright.Install(); err != nil {
|
|
log.Fatalf("could not install playwright: %v", err)
|
|
}
|
|
}
|