1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-30 02:40:33 +00:00
strimertul/docs/cmd/docgen/main.go
2024-03-15 23:48:34 +01:00

14 lines
191 B
Go

package main
import (
"encoding/json"
"os"
"git.sr.ht/~ashkeel/strimertul/docs"
)
func main() {
enc := json.NewEncoder(os.Stdout)
enc.SetIndent("", " ")
_ = enc.Encode(docs.Keys)
}