github.com/matthewdale/lab@v0.14.0/docs/main.go (about)

     1  package main
     2  
     3  import (
     4  	"log"
     5  
     6  	"github.com/spf13/cobra/doc"
     7  	"github.com/zaquestion/lab/cmd"
     8  )
     9  
    10  func main() {
    11  	err := doc.GenMarkdownTree(cmd.RootCmd, "./")
    12  	if err != nil {
    13  		log.Fatal(err)
    14  	}
    15  }