cosmium/api/handlers/server_info.go
2024-02-11 01:44:20 +02:00

13 lines
219 B
Go

package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/pikami/cosmium/internal/constants"
)
func GetServerInfo(c *gin.Context) {
c.IndentedJSON(http.StatusOK, constants.ServerInfoResponse)
}