aboutsummaryrefslogtreecommitdiffhomepage
path: root/fst/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'fst/app.go')
-rw-r--r--fst/app.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/fst/app.go b/fst/app.go
index 87a836ca..3e026391 100644
--- a/fst/app.go
+++ b/fst/app.go
@@ -2,7 +2,6 @@
package fst
import (
- "context"
"time"
)
@@ -19,7 +18,7 @@ type App interface {
type SealedApp interface {
// Run commits sealed system setup and starts the app process.
- Run(ctx context.Context, rs *RunState) error
+ Run(rs *RunState) error
}
// RunState stores the outcome of a call to [SealedApp.Run].