d2/d2renderers/d2latex/latex_stub.go

14 lines
242 B
Go
Raw Normal View History

2022-11-28 03:14:36 +00:00
//go:build !cgo
package d2latex
import "errors"
func Render(s string) (string, error) {
return "", errors.New("not found in build")
}
func Measure(s string) (width, height int, _ error) {
return 0, 0, errors.New("not found in build")
}