mirror of
https://github.com/traefik/traefik.git
synced 2025-05-05 15:33:01 +00:00
11 lines
273 B
Go
11 lines
273 B
Go
package main
|
|
|
|
var (
|
|
// Version holds the current version of traefik.
|
|
Version = "dev"
|
|
// Codename holds the current version codename of traefik.
|
|
Codename = "cheddar" // beta cheese
|
|
// BuildDate holds the build date of traefik.
|
|
BuildDate = "I don't remember exactly"
|
|
)
|