mirror of
https://github.com/Dadido3/go-typst.git
synced 2025-04-04 09:13:17 +00:00
16 lines
427 B
Go
16 lines
427 B
Go
// Copyright (c) 2024-2025 David Vogel
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
//go:build windows
|
|
|
|
package typst
|
|
|
|
// The path to the Typst executable.
|
|
// We assume the executable is in the current working directory.
|
|
//var ExecutablePath = "." + string(filepath.Separator) + filepath.Join("typst.exe")
|
|
|
|
// The path to the Typst executable.
|
|
var ExecutablePath = "typst.exe"
|