1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-11 18:20:33 +09:00
anytype-heart/change/graphviz.go
2021-12-10 12:37:40 +01:00

10 lines
191 B
Go

// +build !linux,!darwin android ios nographviz
// +build !amd64
package change
import "fmt"
func (t *Tree) Graphviz() (data string, err error) {
return "", fmt.Errorf("not supported")
}