From 5c4058d5ac7e7944973ca8216c258fc50c194e22 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 25 Mar 2025 01:52:49 +0900 Subject: app: run in native sandbox Signed-off-by: Ophestra --- fst/app.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'fst/app.go') 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]. -- cgit v1.3.1