wand/formatman.go
2025-08-24 04:46:54 +02:00

12 lines
174 B
Go

package wand
import "io"
func formatMan(out io.Writer, doc doc) error {
// if no subcommands, then similar to help
// otherwise:
// title
// all commands
return nil
}