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