any-sync/pkg/acl/tree/treegraph.go
2022-08-10 11:52:45 +02:00

12 lines
287 B
Go

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