mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 14:07:02 +09:00
11 lines
293 B
Go
11 lines
293 B
Go
//go:build ((!linux && !darwin) || android || ios || nographviz) && !amd64
|
|
// +build !linux,!darwin android ios nographviz
|
|
// +build !amd64
|
|
|
|
package objecttree
|
|
|
|
import "fmt"
|
|
|
|
func (t *Tree) Graph(parser DescriptionParser) (data []string, err error) {
|
|
return "", fmt.Errorf("not supported")
|
|
}
|