From b37c1d899349fef9e7af38940ae0c2d507c433a9 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 7 Aug 2026 18:57:01 +0900 Subject: command: use NUL for magic usage string This change also improves documentation. Signed-off-by: Ophestra --- command/wrap.go | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 command/wrap.go (limited to 'command/wrap.go') diff --git a/command/wrap.go b/command/wrap.go deleted file mode 100644 index ee08a61a..00000000 --- a/command/wrap.go +++ /dev/null @@ -1,14 +0,0 @@ -package command - -// the top level node wants [Command] returned for its builder methods -type rootNode struct{ *node } - -func (r rootNode) Command(name, usage string, f HandlerFunc) Command { - r.node.Command(name, usage, f) - return r -} - -func (r rootNode) Flag(p any, name string, value FlagDefiner, usage string) Command { - r.node.Flag(p, name, value, usage) - return r -} -- cgit v1.3.1