* Add String to Runtime interface

* Setup Dynamic Runtime Configuration
This commit is contained in:
ben-toogood
2020-02-05 13:59:35 +00:00
committed by GitHub
parent 4333f00a43
commit bf747a86f4
7 changed files with 50 additions and 1 deletions

11
runtime/local/local.go Normal file
View File

@@ -0,0 +1,11 @@
// 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...)
}