5d59b50912
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
14 lines
238 B
Go
14 lines
238 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// GET /api/v1/status
|
|
func GetStatus(router *gin.RouterGroup) {
|
|
router.GET("/status", func(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"status": "operational"})
|
|
})
|
|
}
|