1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00
lazygit/pkg/jsonschema/generator.go
2023-12-02 10:46:24 +01:00

15 lines
224 B
Go

//go:build ignore
package main
import (
"fmt"
"github.com/jesseduffield/lazygit/pkg/jsonschema"
)
func main() {
fmt.Printf("Generating jsonschema in %s...\n", jsonschema.GetSchemaDir())
jsonschema.GenerateSchema()
}