From 648e1d641a8b0ae7c5bc4899f84b884d4335c97f Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 18 Feb 2025 23:05:37 +0900 Subject: app: separate interface from implementation Signed-off-by: Ophestra --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.go') diff --git a/main.go b/main.go index b4bfff97..c1aee941 100644 --- a/main.go +++ b/main.go @@ -319,7 +319,7 @@ func main() { } func runApp(config *fst.Config) { - rs := new(app.RunState) + rs := new(fst.RunState) ctx, stop := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM) defer stop() // unreachable -- cgit v1.3.1