two/internal/netns/call_other.go
GnomeZworc a650a34fc3
f-10: code: add function to call a function in a netns #10
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2026-01-08 23:47:52 +01:00

7 lines
97 B
Go

//go:build !linux
package netns
func call(name string, fn func() error) error {
return fn()
}