7 lines
94 B
Go
7 lines
94 B
Go
//go:build !linux
|
|
|
|
package netns
|
|
|
|
func call(_ string, fn func() error) error {
|
|
return fn()
|
|
}
|