mirror of
https://github.com/Dadido3/go-typst.git
synced 2025-04-11 12:13:16 +00:00
9 lines
207 B
Go
9 lines
207 B
Go
//go:build windows
|
|
|
|
package typst
|
|
|
|
import "path/filepath"
|
|
|
|
// We assume the executable is in the current working directory.
|
|
var ExecutablePath = "." + string(filepath.Separator) + filepath.Join("typst.exe")
|