any-sync/common/pkg/acl/tree/treegraph.go
Sergey Cherepanov daa9bb1df0
move pkgs
2022-10-17 14:11:55 +03: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")
}