delve/scripts/gen-usage-docs.go
Derek Parker 4c9a72e486 *: Update import name to github.com/go-delve/delve
The repository is being switched from the personal account
github.com/derekparker/delve to the organization account
github.com/go-delve/delve. This patch updates imports and docs, while
preserving things which should not be changed such as my name in the
CHANGELOG and in TODO comments.
2019-01-04 19:43:13 +01:00

13 lines
194 B
Go

// +build ignore
package main
import (
"github.com/go-delve/delve/cmd/dlv/cmds"
"github.com/spf13/cobra/doc"
)
func main() {
doc.GenMarkdownTree(cmds.New(true), "./Documentation/usage")
}