github.com/annwntech/go-micro/v2@v2.9.5/runtime/local/process/os/process.go (about)

     1  // Package os runs processes locally
     2  package os
     3  
     4  import (
     5  	"github.com/annwntech/go-micro/v2/runtime/local/process"
     6  )
     7  
     8  type Process struct{}
     9  
    10  func NewProcess(opts ...process.Option) process.Process {
    11  	return &Process{}
    12  }