Files
warmbly/internal/api/handler/tz.go
T

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())
}