mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-12 10:40:44 +09:00
11 lines
289 B
Go
11 lines
289 B
Go
//go:build ((!linux && !darwin) || android || ios || nographviz) && !amd64
|
|
// +build !linux,!darwin android ios nographviz
|
|
// +build !amd64
|
|
|
|
package threadbuilder
|
|
|
|
import "fmt"
|
|
|
|
func (t *ThreadBuilder) Graph() (string, error) {
|
|
return "", fmt.Errorf("building graphs is not supported")
|
|
}
|