improved logging in callbacks

This commit is contained in:
Stephan D
2026-03-03 00:26:51 +01:00
parent 4b57550c36
commit b10ec79fe0
5 changed files with 129 additions and 8 deletions

View File

@@ -5,6 +5,7 @@ import (
"github.com/tech/sendico/edge/callbacks/internal/model"
"github.com/tech/sendico/edge/callbacks/internal/storage"
"github.com/tech/sendico/pkg/mlogger"
"go.mongodb.org/mongo-driver/v2/bson"
)
@@ -16,4 +17,5 @@ type Resolver interface {
// Dependencies defines subscriptions resolver dependencies.
type Dependencies struct {
EndpointRepo storage.EndpointRepo
Logger mlogger.Logger
}