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
|
2025-06-05 15:56:40 +08:00
|
|
|
Ctx context.Context
|
2024-12-18 16:25:49 +08:00
|
|
|
AnchorChan chan AnchorParamConfig
|
2024-11-22 16:41:04 +08:00
|
|
|
}
|