mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
14 lines
185 B
Go
14 lines
185 B
Go
package routes
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/sablierapp/sablier/version"
|
|
)
|
|
|
|
func GetVersion(c *gin.Context) {
|
|
c.JSON(http.StatusOK, version.Map())
|
|
}
|