github.com/vcilabs/webrpc@v0.5.2-0.20201116131534-162e27b1b33b/gen/golang/helpers.go (about)

     1  package golang
     2  
     3  import (
     4  	"golang.org/x/tools/imports"
     5  )
     6  
     7  // FormatSource is gofmt with addition of removing any unused imports.
     8  func FormatSource(source []byte) ([]byte, error) {
     9  	return imports.Process("", source, &imports.Options{
    10  		AllErrors: true, Comments: true, TabIndent: true, TabWidth: 8,
    11  	})
    12  }