2024-03-03 11:04:46 +00:00

27 lines
785 B
Go

package api
//go:generate go run github.com/deepmap/oapi-codegen/v2/cmd/oapi-codegen --config=api.cfg.yaml ../../docs/openapi.yaml
import (
"net/http"
"github.com/labstack/echo/v4"
)
type PersonalFinanceImpl struct{}
func (*PersonalFinanceImpl) GetBanks(ctx echo.Context) error {
return echo.NewHTTPError(http.StatusNotImplemented)
}
func (*PersonalFinanceImpl) GetBanksById(ctx echo.Context, bankId int64) error {
return echo.NewHTTPError(http.StatusNotImplemented)
}
func (*PersonalFinanceImpl) GetTransactions(ctx echo.Context, params GetTransactionsParams) error {
return echo.NewHTTPError(http.StatusNotImplemented)
}
func (*PersonalFinanceImpl) GetTransactionsById(ctx echo.Context, transactionId int64) error {
return echo.NewHTTPError(http.StatusNotImplemented)
}