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