e071084ebe
govulncheck / govulncheck (push) Waiting to run
Harness (E2E) / Harnesses (mock LLM) (push) Waiting to run
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Run Tests / Unit Tests (push) Waiting to run
Run Tests / Etcd Integration Tests (push) Waiting to run
13 lines
318 B
Go
13 lines
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.
|
|
package memory
|
|
|
|
import (
|
|
"go-micro.dev/v6/model"
|
|
)
|
|
|
|
// New creates a new in-memory model.
|
|
func New(opts ...model.Option) model.Model {
|
|
return model.NewModel(opts...)
|
|
}
|