From 6309469e933a31a300fbf16d8e77f48dcee402d3 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 12 Apr 2025 13:56:41 +0900 Subject: app/instance: wrap internal implementation This reduces the scope of the fst package, which was growing questionably large. Signed-off-by: Ophestra --- internal/app/instance/shim.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 internal/app/instance/shim.go (limited to 'internal/app/instance/shim.go') diff --git a/internal/app/instance/shim.go b/internal/app/instance/shim.go new file mode 100644 index 00000000..bc497ad3 --- /dev/null +++ b/internal/app/instance/shim.go @@ -0,0 +1,6 @@ +package instance + +import "git.gensokyo.uk/security/fortify/internal/app/internal/setuid" + +// ShimMain is the main function of the shim process and runs as the unconstrained target user. +func ShimMain() { setuid.ShimMain() } -- cgit v1.3.1