11 lines
213 B
Go
11 lines
213 B
Go
package wazero
|
|
|
|
import "github.com/tetratelabs/wazero/internal/version"
|
|
|
|
// wazeroVersion holds the current version of wazero.
|
|
var wazeroVersion string
|
|
|
|
func init() {
|
|
wazeroVersion = version.GetWazeroVersion()
|
|
}
|