GAAS GFrame项目web后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
237 B

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