mirror of
https://github.com/pikami/cosmium.git
synced 2025-12-20 09:20:11 +00:00
Added get APIs for Stored Procedures, Triggers and User Defined Functions
This commit is contained in:
15
api/handlers/offers.go
Normal file
15
api/handlers/offers.go
Normal file
@@ -0,0 +1,15 @@
|
||||
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{}{},
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user