cosmium/api/handlers/server_info.go

13 lines
219 B
Go
Raw Normal View History

2024-02-10 17:17:34 +02:00
package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
2024-02-11 01:44:20 +02:00
"github.com/pikami/cosmium/internal/constants"
2024-02-10 17:17:34 +02:00
)
func GetServerInfo(c *gin.Context) {
2024-02-11 01:44:20 +02:00
c.IndentedJSON(http.StatusOK, constants.ServerInfoResponse)
2024-02-10 17:17:34 +02:00
}