mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-18 08:26:38 +02:00
d94936f6c9
* v3 * revert plugins * fixup some issues
12 lines
246 B
Go
12 lines
246 B
Go
// Package local provides a local runtime
|
|
package local
|
|
|
|
import (
|
|
"github.com/asim/go-micro/v3/runtime"
|
|
)
|
|
|
|
// NewRuntime returns a new local runtime
|
|
func NewRuntime(opts ...runtime.Option) runtime.Runtime {
|
|
return runtime.NewRuntime(opts...)
|
|
}
|