mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
27 lines
538 B
Go
27 lines
538 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"os"
|
||
|
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
cli.Add(cliRegistryEntry{
|
||
|
Name: "tpl-docs",
|
||
|
Description: "Generate markdown documentation for available template functions",
|
||
|
Run: func(args []string) error {
|
||
|
doc, err := generateTplDocs()
|
||
|
if err != nil {
|
||
|
return errors.Wrap(err, "generating template docs")
|
||
|
}
|
||
|
if _, err = os.Stdout.Write(append(bytes.TrimSpace(doc), '\n')); err != nil {
|
||
|
return errors.Wrap(err, "writing actor docs to stdout")
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
},
|
||
|
})
|
||
|
}
|