diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-03-25 01:52:49 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-03-25 01:52:49 +0900 |
| commit | 5c4058d5ac7e7944973ca8216c258fc50c194e22 (patch) | |
| tree | c06597903233c75eca5a1edae8b06d93f0f81774 /fst/app.go | |
| parent | e732dca7629edb503df0c65df5f37a99600d567d (diff) | |
app: run in native sandbox
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'fst/app.go')
| -rw-r--r-- | fst/app.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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]. |
