项目文件夹

文件

项目文件夹

0
T

13 行
318 B
Go

// Package memory provides an in-memory model.Model implementation.
// This is the same as model.NewModel() but importable as a standalone package.
2026-03-04 13:13:34 +00:00
package memory
import (
"go-micro.dev/v6/model"
2026-03-04 13:13:34 +00:00
)
// New creates a new in-memory model.
func New(opts ...model.Option) model.Model {
return model.NewModel(opts...)
2026-03-04 13:13:34 +00:00
}