router/pkg/grpcconnector/grpc_plugin_command.go (8 lines of code) (raw):

//go:build !linux // +build !linux package grpcconnector import ( "os/exec" ) func newPluginCommand(filePath string) *exec.Cmd { cmd := exec.Command(filePath) return cmd }