aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xdsserver/apiv1-version.go
blob: 2c2547c162ffa9704df2e5f6e36cf29ed7961ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package xdsserver

import (
	"net/http"

	"github.com/gin-gonic/gin"
	"github.com/iotbzh/xds-server/lib/xsapiv1"
)

// getInfo : return various information about server
func (s *APIService) getVersion(c *gin.Context) {
	response := xsapiv1.Version{
		ID:            s.Config.ServerUID,
		Version:       s.Config.Version,
		APIVersion:    s.Config.APIVersion,
		VersionGitTag: s.Config.VersionGitTag,
	}

	c.JSON(http.StatusOK, response)
}