micro/runtime/local/local.go
ben-toogood bf747a86f4
Runtime (#1160)
* Add String to Runtime interface

* Setup Dynamic Runtime Configuration
2020-02-05 13:59:35 +00:00

12 lines
247 B
Go

// Package local provides a local runtime
package local
import (
"github.com/micro/go-micro/v2/runtime"
)
// NewRuntime returns a new local runtime
func NewRuntime(opts ...runtime.Option) runtime.Runtime {
return runtime.NewRuntime(opts...)
}