summaryrefslogtreecommitdiff
path: root/internal/clients/maker.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-13 09:29:59 +0200
committerPaul Buetow <paul@buetow.org>2026-03-13 09:29:59 +0200
commitd8f88d455990636bb797643dee7d39a95bbbd62c (patch)
tree8c8447fc975ec6deebe48218d27e3defa1b3dcce /internal/clients/maker.go
parent7a79d0a8bf58b05dfbae331d00275739530b9584 (diff)
task 4abe7505: reset dmap generation state
Diffstat (limited to 'internal/clients/maker.go')
-rw-r--r--internal/clients/maker.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/clients/maker.go b/internal/clients/maker.go
index 6d75fc1..81ced09 100644
--- a/internal/clients/maker.go
+++ b/internal/clients/maker.go
@@ -15,3 +15,7 @@ type maker interface {
type sessionSpecMaker interface {
makeSessionSpec() (SessionSpec, error)
}
+
+type sessionCommitter interface {
+ commitSessionSpec(spec SessionSpec, generation uint64) error
+}