1
0
mirror of https://github.com/pikami/cosmium.git synced 2025-03-11 20:37:55 +00:00

16 lines
208 B
Go
Raw Normal View History

package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func GetOffers(c *gin.Context) {
c.IndentedJSON(http.StatusOK, gin.H{
"_rid": "",
"_count": 0,
"Offers": []interface{}{},
})
}