mirror of
https://github.com/komari-monitor/komari.git
synced 2025-10-23 03:31:56 +00:00
15 lines
246 B
Go
15 lines
246 B
Go
package api
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/komari-monitor/komari/utils"
|
|
)
|
|
|
|
func GetVersion(c *gin.Context) {
|
|
c.JSON(200, gin.H{
|
|
"version": utils.CurrentVersion,
|
|
"hash": utils.VersionHash,
|
|
"status": "success",
|
|
})
|
|
}
|