diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-04-12 13:56:41 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-04-12 13:56:41 +0900 |
| commit | 6309469e933a31a300fbf16d8e77f48dcee402d3 (patch) | |
| tree | 8f8a72ee02b3ca15b104a6e55c9379e20f8d7e8a /internal/app/instance/new.go | |
| parent | 0d7c1a9a4356614f035225aeb24e66421879a99b (diff) | |
app/instance: wrap internal implementation
This reduces the scope of the fst package, which was growing questionably large.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/instance/new.go')
| -rw-r--r-- | internal/app/instance/new.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/internal/app/instance/new.go b/internal/app/instance/new.go new file mode 100644 index 00000000..cb5e8b27 --- /dev/null +++ b/internal/app/instance/new.go @@ -0,0 +1,33 @@ +// Package instance exposes cross-package implementation details and provides constructors for builtin implementations. +package instance + +import ( + "context" + "log" + "syscall" + + "git.gensokyo.uk/security/fortify/internal/app" + "git.gensokyo.uk/security/fortify/internal/app/internal/setuid" + "git.gensokyo.uk/security/fortify/internal/sys" +) + +const ( + ISetuid = iota +) + +func New(whence int, ctx context.Context, os sys.State) (app.App, error) { + switch whence { + case ISetuid: + return setuid.New(ctx, os) + default: + return nil, syscall.EINVAL + } +} + +func MustNew(whence int, ctx context.Context, os sys.State) app.App { + a, err := New(whence, ctx, os) + if err != nil { + log.Fatalf("cannot create app: %v", err) + } + return a +} |
