boxdd: Add insecure mode

This commit is contained in:
世界
2026-07-15 19:31:11 +08:00
parent 52f372c536
commit e34b57c3b0
61 changed files with 1058 additions and 288 deletions
+16
View File
@@ -0,0 +1,16 @@
//go:build !windows
package main
import "context"
func registerSecurityPolicy(ctx context.Context, daemon *Daemon) {
}
func insecureModeAvailable() bool {
return false
}
func (d *Daemon) insecureModeEnabled() bool {
return false
}