mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-23 12:18:51 +02:00
16 lines
257 B
Go
16 lines
257 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()
|
|
jsonschema.GenerateConfigDocs()
|
|
}
|