bf747a86f4
* Add String to Runtime interface * Setup Dynamic Runtime Configuration
12 lines
247 B
Go
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...)
|
|
}
|