Files
warmbly/internal/api/handler/tz.go
T
2026-01-17 14:11:14 +00:00

12 lines
169 B
Go

package handler
import (
"net/http"
"github.com/gin-gonic/gin"
)
func (h *Handler) GetTimezones(c *gin.Context) {
c.JSON(http.StatusOK, h.TzService.Timezones())
}