mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-03 13:21:56 +02:00
15 lines
224 B
Go
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()
|
||
|
}
|