Files
fn-serverless/api/server/router/version.go
2016-07-21 16:09:21 -03:00

12 lines
162 B
Go

package router
import (
"net/http"
"github.com/gin-gonic/gin"
)
func handleVersion(c *gin.Context) {
c.JSON(http.StatusNotImplemented, "Not Implemented")
}