mirror of
https://github.com/a-h/templ.git
synced 2025-02-06 10:03:16 +00:00
11 lines
121 B
Go
11 lines
121 B
Go
package templ
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed .version
|
|
var version string
|
|
|
|
func Version() string {
|
|
return "v" + version
|
|
}
|