mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
15 lines
202 B
Go
15 lines
202 B
Go
package etcdserver
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
const (
|
|
releaseVersion = "0.5rc1+git"
|
|
)
|
|
|
|
func versionHandler(w http.ResponseWriter, req *http.Request) {
|
|
fmt.Fprintf(w, "etcd %s", releaseVersion)
|
|
}
|