mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-06 17:33:54 +08:00
16 lines
198 B
Go
16 lines
198 B
Go
package commands
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed version.txt
|
|
var VersionString string
|
|
|
|
type VersionOptions struct{}
|
|
|
|
func Version(_ *VersionOptions) error {
|
|
println(VersionString)
|
|
return nil
|
|
}
|