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

15 lines
224 B
Go
Raw Normal View History

//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()
}