Sergey Cherepanov 1ae94266d2
fix win build
2023-02-05 17:29:55 +03:00

11 lines
281 B
Go

//go:build (!linux && !darwin) || android || ios || nographviz || windows
// +build !linux,!darwin android ios nographviz windows
package objecttree
import "fmt"
func (t *Tree) Graph(parser DescriptionParser) (data string, err error) {
return "", fmt.Errorf("not supported")
}