5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-04 07:29:56 +08:00
wails/v3/internal/flags/package.go
2024-12-08 19:27:46 +11:00

12 lines
519 B
Go

package flags
// ToolPackage represents the options for the package command
type ToolPackage struct {
Common
Format string `name:"format" description:"Package format to generate (deb, rpm, archlinux)" default:"deb"`
ExecutableName string `name:"name" description:"Name of the executable to package" default:"myapp"`
ConfigPath string `name:"config" description:"Path to the package configuration file" default:""`
Out string `name:"out" description:"Path to the output dir" default:"."`
}