wand/formatman.go

12 lines
174 B
Go
Raw Normal View History

2025-08-24 04:46:54 +02:00
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
}