We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0abc42 commit 0ef23b6Copy full SHA for 0ef23b6
internal/transprocessor/processor.go
@@ -4,6 +4,7 @@ import (
4
"context"
5
6
"github.com/PythonHacker24/linux-acl-management-backend/internal/session"
7
+ "github.com/PythonHacker24/linux-acl-management-backend/internal/types"
8
)
9
10
/*
@@ -16,5 +17,5 @@ import (
16
17
18
/* transaction processor - pluggable to any scheduler */
19
type TransactionProcessor interface {
- Process(ctx context.Context, curSession *session.Session, transaction interface{}) error
20
+ Process(ctx context.Context, curSession *session.Session, transaction *types.Transaction) error
21
}
0 commit comments