cosmium/api/handlers/server_info.go

13 lines
219 B
Go
Raw Normal View History

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