translations.go 204 B

1234567891011
  1. package api
  2. import (
  3. "github.com/0xJacky/Nginx-UI/frontend"
  4. "github.com/gin-gonic/gin"
  5. "net/http"
  6. )
  7. func GetTranslations(c *gin.Context) {
  8. c.JSON(http.StatusOK, frontend.Translations)
  9. }