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
319 B

  1. // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
  2. package container
  3. // 创建器集合,用于一次性设置服务方法的创建器
  4. type BuilderSet struct {
  5. // 路由创建器
  6. RouterBuilder
  7. // 调用器代理创建器列表
  8. CallerBrokerBuilders []CallerBrokerBuilder
  9. }