modelRT/config/model_config.go

15 lines
250 B
Go
Raw Permalink Normal View History

// Package config define config struct of model runtime service
package config
import (
"context"
"modelRT/orm"
)
type ModelParseConfig struct {
ComponentInfo orm.Component
Ctx context.Context
2024-12-18 16:25:49 +08:00
AnchorChan chan AnchorParamConfig
}