blob: ad357e42487d05ff6927a6ccd682bdf388e430aa [file] [log] [blame]
// Program to generate JSON Schema definitions for the Probe struct.
//
//go:generate bazelisk run --config=mayberemote //:go -- run .
package main
import (
"go.skia.org/infra/go/jsonschema"
"go.skia.org/infra/proberk/go/types"
)
func main() {
jsonschema.GenerateSchema("../probesSchema.json", &types.Probes{})
}