mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-07 01:46:54 +00:00
18 lines
317 B
Go
18 lines
317 B
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/oam-dev/kubevela/pkg/server/apis"
|
|
"github.com/oam-dev/kubevela/version"
|
|
)
|
|
|
|
func GetVersion(c *gin.Context) {
|
|
c.JSON(http.StatusOK, apis.Response{
|
|
Code: http.StatusOK,
|
|
Data: map[string]string{"version": version.VelaVersion},
|
|
})
|
|
}
|