From 532feb4bfaa84a57dc8de97f36b13a89610a0584 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 25 Mar 2025 05:21:47 +0900 Subject: app: merge shim into app package Signed-off-by: Ophestra --- main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 9890b529..237574a2 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,6 @@ import ( "git.gensokyo.uk/security/fortify/fst" "git.gensokyo.uk/security/fortify/internal" "git.gensokyo.uk/security/fortify/internal/app" - "git.gensokyo.uk/security/fortify/internal/app/shim" "git.gensokyo.uk/security/fortify/internal/fmsg" "git.gensokyo.uk/security/fortify/internal/state" "git.gensokyo.uk/security/fortify/internal/sys" @@ -74,7 +73,7 @@ func buildCommand(out io.Writer) command.Command { Flag(&flagVerbose, "v", command.BoolFlag(false), "Print debug messages to the console"). Flag(&flagJSON, "json", command.BoolFlag(false), "Serialise output as JSON when applicable") - c.Command("shim", command.UsageInternal, func([]string) error { shim.Main(); return errSuccess }) + c.Command("shim", command.UsageInternal, func([]string) error { app.ShimMain(); return errSuccess }) c.Command("app", "Launch app defined by the specified config file", func(args []string) error { if len(args) < 1 { -- cgit v1.3.1