payment quotation v2 + payment orchestration v2 draft

This commit is contained in:
Stephan D
2026-02-24 13:01:35 +01:00
parent 0646f55189
commit 6444813f38
289 changed files with 17005 additions and 16065 deletions

View File

@@ -10,6 +10,7 @@ import (
"time"
"github.com/tech/sendico/pkg/merrors"
"github.com/tech/sendico/pkg/mlogger"
"go.uber.org/zap"
)
@@ -312,10 +313,7 @@ func clearSignature(req any) (func(string), error) {
}
}
func logRequestDeadline(logger *zap.Logger, ctx context.Context, url string) {
if logger == nil {
return
}
func logRequestDeadline(logger mlogger.Logger, ctx context.Context, url string) {
if ctx == nil {
logger.Info("Monetix request context is nil", zap.String("url", url))
return