aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/spruntime.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-10-07 21:38:31 +0900
committerOphestra <cat@gensokyo.uk>2025-10-07 21:38:31 +0900
commit584ce3da685352847e5c6189e5050bd5cb0307e9 (patch)
tree4bd313118df607449569bbe23a910af501e9166b /internal/app/spruntime.go
parent5d18af00077ae6ba8ef686d1fd93d888f69681b2 (diff)
container/bits: move bind bits
This allows referring to the bits without importing container. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/spruntime.go')
-rw-r--r--internal/app/spruntime.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/app/spruntime.go b/internal/app/spruntime.go
index be188853..d327003f 100644
--- a/internal/app/spruntime.go
+++ b/internal/app/spruntime.go
@@ -1,7 +1,7 @@
package app
import (
- "hakurei.app/container"
+ "hakurei.app/container/bits"
"hakurei.app/container/check"
"hakurei.app/container/fhs"
"hakurei.app/hst"
@@ -35,7 +35,7 @@ func (s spRuntimeOp) toContainer(state *outcomeStateParams) error {
_, runtimeDirInst := s.commonPaths(state.outcomeState)
state.params.Tmpfs(fhs.AbsRunUser, 1<<12, 0755)
- state.params.Bind(runtimeDirInst, state.runtimeDir, container.BindWritable)
+ state.params.Bind(runtimeDirInst, state.runtimeDir, bits.BindWritable)
return nil
}