mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
14 lines
211 B
Go
14 lines
211 B
Go
package routes
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func (s *ServeStrategy) ServeDynamicThemes(c *gin.Context) {
|
|
c.JSON(http.StatusOK, map[string]interface{}{
|
|
"themes": s.Theme.List(),
|
|
})
|
|
}
|