From 648e1d641a8b0ae7c5bc4899f84b884d4335c97f Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 18 Feb 2025 23:05:37 +0900 Subject: app: separate interface from implementation Signed-off-by: Ophestra --- internal/sys/std.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'internal/sys/std.go') diff --git a/internal/sys/std.go b/internal/sys/std.go index 88579f6d..bab2b923 100644 --- a/internal/sys/std.go +++ b/internal/sys/std.go @@ -13,13 +13,14 @@ import ( "sync" "syscall" + "git.gensokyo.uk/security/fortify/fst" "git.gensokyo.uk/security/fortify/internal" "git.gensokyo.uk/security/fortify/internal/fmsg" ) // Std implements System using the standard library. type Std struct { - paths Paths + paths fst.Paths pathsOnce sync.Once uidOnce sync.Once @@ -46,7 +47,7 @@ func (s *Std) Printf(format string, v ...any) { fmsg.Verbosef(form const xdgRuntimeDir = "XDG_RUNTIME_DIR" -func (s *Std) Paths() Paths { +func (s *Std) Paths() fst.Paths { s.pathsOnce.Do(func() { CopyPaths(s, &s.paths) }) return s.paths } -- cgit v1.3.1