mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
11 lines
204 B
Go
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)
|
|
}
|