Files
fn-serverless/api/server/stats.go
2017-01-03 21:39:29 +01:00

12 lines
159 B
Go

package server
import (
"net/http"
"github.com/gin-gonic/gin"
)
func (s *Server) handleStats(c *gin.Context) {
c.JSON(http.StatusOK, s.Runner.Stats())
}