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