13 lines
148 B
Go
13 lines
148 B
Go
|
|
package config
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"modelRT/orm"
|
||
|
|
)
|
||
|
|
|
||
|
|
type ModelParseConfig struct {
|
||
|
|
ComponentInfo orm.Component
|
||
|
|
Context context.Context
|
||
|
|
}
|