mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 16:01:16 +00:00
12 lines
169 B
Go
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())
|
|
}
|