Fix platform specific os/process build

This commit is contained in:
Asim Aslam
2019-11-23 08:25:56 +00:00
parent 38e29c5101
commit cae4148594
3 changed files with 14 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
// Package os runs processes locally
package os
import (
"github.com/micro/go-micro/runtime/process"
)
type Process struct{}
func NewProcess(opts ...process.Option) process.Process {
return &Process{}
}