13 lines
251 B
Go
13 lines
251 B
Go
package status
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
api "gopkg.in/fukata/golang-stats-api-handler.v1"
|
|
"net/http"
|
|
)
|
|
|
|
// StatusHandler is gin handle for get system status.
|
|
func StatusHandler(c *gin.Context) {
|
|
c.JSON(http.StatusOK, api.GetStats())
|
|
}
|