any-sync/pkg/acl/testutils/threadbuilder/threadbuildergraph.go
2022-07-13 20:09:19 +03:00

12 lines
289 B
Go

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