1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-29 18:04:17 +02:00

12 lines
235 B
Go
Raw Normal View History

// Package local provides a local runtime
package local
import (
2021-10-12 12:55:53 +01:00
"go-micro.dev/v4/runtime"
)
2022-09-30 16:27:07 +02:00
// NewRuntime returns a new local runtime.
func NewRuntime(opts ...runtime.Option) runtime.Runtime {
return runtime.NewRuntime(opts...)
}