2016-12-08 08:12:18 +00:00
|
|
|
package api
|
|
|
|
|
2016-12-15 23:51:56 +00:00
|
|
|
import (
|
2022-05-16 09:38:46 +00:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2016-12-15 23:51:56 +00:00
|
|
|
)
|
2016-12-08 08:12:18 +00:00
|
|
|
|
2022-05-16 09:38:46 +00:00
|
|
|
func DeclareVersionRoutes(router *gin.RouterGroup) {
|
|
|
|
router.GET("/version", showVersion)
|
2016-12-08 08:12:18 +00:00
|
|
|
}
|
|
|
|
|
2022-05-16 09:38:46 +00:00
|
|
|
func showVersion(c *gin.Context) {
|
|
|
|
c.JSON(http.StatusOK, gin.H{"version": 1.0})
|
2016-12-08 08:12:18 +00:00
|
|
|
}
|