1 | //go:build !cgo |
---|---|
2 | // +build !cgo |
3 | |
4 | package main |
5 | |
6 | func runDotToImage(outfname string, format string, dot []byte) (string, error) { |
7 | return runDotToImageCallSystemGraphviz(outfname, format, dot) |
8 | } |
9 |
Members
1 | //go:build !cgo |
---|---|
2 | // +build !cgo |
3 | |
4 | package main |
5 | |
6 | func runDotToImage(outfname string, format string, dot []byte) (string, error) { |
7 | return runDotToImageCallSystemGraphviz(outfname, format, dot) |
8 | } |
9 |