
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.
13 lines
194 B
Go
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")
|
|
}
|