mirror of
				https://github.com/go-delve/delve.git
				synced 2025-11-04 14:36:47 +08:00 
			
		
		
		
	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")
 | 
						|
}
 |