mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 19:49:44 +00:00
36 lines
556 B
Go
36 lines
556 B
Go
package doc_test
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/cobra/doc"
|
|
)
|
|
|
|
func ExampleGenManTree() {
|
|
cmd := &cobra.Command{
|
|
Use: "test",
|
|
Short: "my test program",
|
|
}
|
|
header := &doc.GenManHeader{
|
|
Title: "MINE",
|
|
Section: "3",
|
|
}
|
|
doc.GenManTree(cmd, header, "/tmp")
|
|
}
|
|
|
|
func ExampleGenMan() {
|
|
cmd := &cobra.Command{
|
|
Use: "test",
|
|
Short: "my test program",
|
|
}
|
|
header := &doc.GenManHeader{
|
|
Title: "MINE",
|
|
Section: "3",
|
|
}
|
|
out := new(bytes.Buffer)
|
|
doc.GenMan(cmd, header, out)
|
|
fmt.Print(out.String())
|
|
}
|