mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
10 lines
294 B
Go
10 lines
294 B
Go
//go:build (!linux && !darwin) || android || ios || nographviz || !cgo || windows
|
|
// +build !linux,!darwin android ios nographviz !cgo windows
|
|
|
|
package objecttree
|
|
|
|
import "fmt"
|
|
|
|
func (t *Tree) Graph(parser DescriptionParser) (data string, err error) {
|
|
return "", fmt.Errorf("not supported")
|
|
}
|