mirror of
https://github.com/pikami/cosmium.git
synced 2024-11-29 08:57:30 +00:00
13 lines
219 B
Go
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)
|
|
}
|