|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
_ "net/http/pprof"
|
|
|
|
"git.internal/re/ledisdb/cmd"
|
|
)
|
|
|
|
var (
|
|
version = "dev"
|
|
buildTag string
|
|
)
|
|
|
|
func main() {
|
|
fmt.Printf("Version %s", version)
|
|
if len(buildTag) > 0 {
|
|
fmt.Printf(" with tag %s", buildTag)
|
|
}
|
|
fmt.Println()
|
|
|
|
cmd.Server()
|
|
}
|