CustodyCollateralAndDocumen.../src/api/GetSearch.go

22 lines
422 B
Go

package api
import (
"net/http"
"github.com/labstack/echo/v4"
"sku61.com/InvestAccnt/api/gen"
)
func (self *BianApiService) GetSearch(ctx echo.Context, params gen.GetSearchParams) error {
self.Lock.Lock()
defer self.Lock.Unlock()
message := "GetSearch service API not implemented"
status := "DM00501"
return sendGeneralError(ctx, http.StatusNotImplemented, message, status, "Implement the API code", "")
}