22 lines
522 B
Go
22 lines
522 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"sku61.com/InvestAccnt/api/gen"
|
|
)
|
|
|
|
|
|
func (self *BianApiService) GetInvestmentsInvestmentAccountId(ctx echo.Context, investmentAccountId string, params gen.GetInvestmentsInvestmentAccountIdParams) error {
|
|
|
|
self.Lock.Lock()
|
|
defer self.Lock.Unlock()
|
|
|
|
message := "GetInvestmentsInvestmentAccountId service API not implemented"
|
|
status := "DM00501"
|
|
return sendGeneralError(ctx, http.StatusNotImplemented, message, status, "Implement the API code", "")
|
|
}
|
|
|