add context to keyvaluemodule get/set

This commit is contained in:
Joel Wetzell
2026-05-27 18:30:23 -05:00
parent 3adbae8068
commit 52ca801fbd
5 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -17,8 +17,8 @@ type OutputModule interface {
}
type KeyValueModule interface {
Get(key string) (any, error)
Set(key string, value any) error
Get(ctx context.Context, key string) (any, error)
Set(ctx context.Context, key string, value any) error
}
type DatabaseModule interface {