squash
This commit is contained in:
parent
61b1891472
commit
dcadfe73e8
@ -1,14 +1,26 @@
|
||||
package api
|
||||
|
||||
//go:generate go run github.com/deepmap/oapi-codegen/v2/cmd/oapi-codegen --config=api.cfg.yaml ../../docs/openapi.yaml
|
||||
import "github.com/labstack/echo/v4"
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/labstack/echo/v4"
|
||||
)
|
||||
|
||||
type PersonalFinanceImpl struct{}
|
||||
|
||||
func (*PersonalFinanceImpl) GetBanks(ctx echo.Context) error {}
|
||||
func (*PersonalFinanceImpl) GetBanks(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusNotImplemented)
|
||||
}
|
||||
|
||||
func (*PersonalFinanceImpl) GetBanksById(ctx echo.Context, bankId int64) error {}
|
||||
func (*PersonalFinanceImpl) GetBanksById(ctx echo.Context, bankId int64) error {
|
||||
return echo.NewHTTPError(http.StatusNotImplemented)
|
||||
}
|
||||
|
||||
func (*PersonalFinanceImpl) GetTransactions(ctx echo.Context, params GetTransactionsParams) error {}
|
||||
func (*PersonalFinanceImpl) GetTransactions(ctx echo.Context, params GetTransactionsParams) error {
|
||||
return echo.NewHTTPError(http.StatusNotImplemented)
|
||||
}
|
||||
|
||||
func (*PersonalFinanceImpl) GetTransactionsById(ctx echo.Context, transactionId int64) error {}
|
||||
func (*PersonalFinanceImpl) GetTransactionsById(ctx echo.Context, transactionId int64) error {
|
||||
return echo.NewHTTPError(http.StatusNotImplemented)
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user