any-sync/commonspace/object/acl/testutils/acllistbuilder/liststoragebuildergraph.go
2023-02-28 17:03:19 +01:00

12 lines
311 B
Go

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