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