mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
15 lines
209 B
Go
15 lines
209 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// Version of IronFunctions
|
|
var Version = "0.1.4"
|
|
|
|
func handleVersion(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"version": Version})
|
|
}
|