mirror of
https://github.com/anyproto/anytype-heart.git
synced 2025-06-11 18:20:33 +09:00
10 lines
191 B
Go
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")
|
|
}
|