d2/d2renderers/d2latex/latex_stub.go
2022-11-27 19:14:36 -08:00

13 lines
242 B
Go

//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")
}