aboutsummaryrefslogtreecommitdiffhomepage
path: root/fst/app.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-02-19 13:41:06 +0900
committerOphestra <cat@gensokyo.uk>2025-02-19 16:20:25 +0900
commitef81828e0c1ce6277e0b124f6062eab564dfeceb (patch)
tree35a127281d3e75d9a71d070133ce3ed26644a40e /fst/app.go
parent2978a6f046f52861a7ac749d1e414758caab8bd5 (diff)
app: remove share method
This is yet another implementation detail from before system.I, getting rid of this vastly cuts down on redundant seal state. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'fst/app.go')
-rw-r--r--fst/app.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/fst/app.go b/fst/app.go
index 31ba484b..95d00dda 100644
--- a/fst/app.go
+++ b/fst/app.go
@@ -24,10 +24,10 @@ type RunState struct {
// Paths contains environment-dependent paths used by fortify.
type Paths struct {
- // path to shared directory e.g. /tmp/fortify.%d
+ // path to shared directory (usually `/tmp/fortify.%d`)
SharePath string `json:"share_path"`
- // XDG_RUNTIME_DIR value e.g. /run/user/%d
+ // XDG_RUNTIME_DIR value (usually `/run/user/%d`)
RuntimePath string `json:"runtime_path"`
- // application runtime directory e.g. /run/user/%d/fortify
+ // application runtime directory (usually `/run/user/%d/fortify`)
RunDirPath string `json:"run_dir_path"`
}