10 lines
129 B
Go
10 lines
129 B
Go
|
package s6netdev
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func NNDLibExec(name string) string {
|
||
|
return fmt.Sprintf("/usr/libexec/nnd/s6/%s", name)
|
||
|
}
|