remove latex_stub.go

This commit is contained in:
Alexander Wang 2022-12-03 12:25:59 -08:00
parent 9b434985a1
commit 8a328fcfa8
No known key found for this signature in database
GPG key ID: D89FA31966BDBECE

View file

@ -1,13 +0,0 @@
//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")
}