// Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
|
|
|
|
package container
|
|
|
|
// 组件句柄
|
|
type ComponentHandler interface {
|
|
// 获取组件实例
|
|
// 返回值:
|
|
// 1.实例
|
|
Instance() Instance
|
|
}
|