mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
Knut Ahlers
673ed1e29a
occurred with new Go / golangci-lint version Signed-off-by: Knut Ahlers <knut@ahlers.me>
26 lines
533 B
Go
26 lines
533 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([]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
|
|
},
|
|
})
|
|
}
|