2024-12-02 16:13:16 +08:00
|
|
|
// Package config define config struct of model runtime service
|
2024-11-22 16:41:04 +08:00
|
|
|
package config
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
|
|
|
|
|
"modelRT/orm"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type ModelParseConfig struct {
|
|
|
|
|
ComponentInfo orm.Component
|
|
|
|
|
Context context.Context
|
|
|
|
|
}
|