Select the types of activity you want to include in your feed.
1//go:build linux 2 3package sandboxexec 4 5import ( 6 "tangled.org/core/knotserver/sandbox" 7) 8 9func applyAndExec(repoPaths, gitArgs []string) error { 10 return sandbox.ApplyLandlock(repoPaths, gitArgs) 11}