diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-02-18 23:05:37 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-02-18 23:07:28 +0900 |
| commit | 648e1d641a8b0ae7c5bc4899f84b884d4335c97f (patch) | |
| tree | fdb45d1fedb60487c22a1fceb9d87ba883f03779 /main.go | |
| parent | 3c327084d387b316795f45420e8d0c6f9ce71ffe (diff) | |
app: separate interface from implementation
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
