nginx-ui/server/api/translations.go
2022-02-19 10:44:28 +08:00

11 lines
204 B
Go

package api
import (
"github.com/0xJacky/Nginx-UI/frontend"
"github.com/gin-gonic/gin"
"net/http"
)
func GetTranslations(c *gin.Context) {
c.JSON(http.StatusOK, frontend.Translations)
}