1
0
mirror of https://github.com/a-h/templ.git synced 2025-02-06 10:03:16 +00:00
templ/version.go

11 lines
121 B
Go

package templ
import _ "embed"
//go:embed .version
var version string
func Version() string {
return "v" + version
}