From d8f76f3b2594db4687c0203c4f2be8d3e4ef7740 Mon Sep 17 00:00:00 2001 From: Ophestra Umiker Date: Wed, 4 Sep 2024 01:20:12 +0900 Subject: rename to fortify and restructure More sandbox features will be added and this will no longer track ego's features and behaviour. Signed-off-by: Ophestra Umiker --- internal/app/builder.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 internal/app/builder.go (limited to 'internal/app/builder.go') diff --git a/internal/app/builder.go b/internal/app/builder.go new file mode 100644 index 00000000..2bce43b4 --- /dev/null +++ b/internal/app/builder.go @@ -0,0 +1,13 @@ +package app + +func (a *App) Command() []string { + return a.command +} + +func (a *App) UID() int { + return a.uid +} + +func (a *App) AppendEnv(k, v string) { + a.env = append(a.env, k+"="+v) +} -- cgit v1.3.1