any-sync/pkg/acl/testutils/acllistbuilder/treestoragebuildergraph.go
2022-08-19 18:17:02 +02:00

12 lines
298 B
Go

//go:build ((!linux && !darwin) || android || ios || nographviz) && !amd64
// +build !linux,!darwin android ios nographviz
// +build !amd64
package acllistbuilder
import "fmt"
func (t *ACLListStorageBuilder) Graph() (string, error) {
return "", fmt.Errorf("building graphs is not supported")
}