mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 02:02:55 +08:00
15 lines
223 B
Go
15 lines
223 B
Go
package commands
|
|
|
|
import (
|
|
_ "embed"
|
|
"github.com/wailsapp/wails/v3/internal/version"
|
|
)
|
|
|
|
type VersionOptions struct{}
|
|
|
|
func Version(_ *VersionOptions) error {
|
|
DisableFooter = true
|
|
println(version.String())
|
|
return nil
|
|
}
|