2025-04-09 15:52:24 +08:00

15 lines
214 B
Go

package volume
import (
"floares/lib/http/volume"
"github.com/gin-gonic/gin"
"net/http"
)
func List(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"data": volume.ListJsons(),
"code": http.StatusOK,
})
}