1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/docs/cmd/docgen/main.go
2023-11-10 21:36:15 +01:00

15 lines
232 B
Go

package main
import (
"os"
"git.sr.ht/~ashkeel/strimertul/docs"
jsoniter "github.com/json-iterator/go"
)
func main() {
enc := jsoniter.ConfigFastest.NewEncoder(os.Stdout)
enc.SetIndent("", " ")
_ = enc.Encode(docs.Keys)
}