()
| 1574 | } |
| 1575 | |
| 1576 | func defaultFeishuBot() dto.AgentFeishuBot { |
| 1577 | return dto.AgentFeishuBot{ |
| 1578 | AgentChannelBotBase: dto.AgentChannelBotBase{ |
| 1579 | AccountID: "default", |
| 1580 | Name: "Default", |
| 1581 | Enabled: true, |
| 1582 | IsDefault: true, |
| 1583 | }, |
| 1584 | DmPolicy: "pairing", |
| 1585 | AllowFrom: []string{}, |
| 1586 | } |
| 1587 | } |
| 1588 | |
| 1589 | func getDefaultFeishuBot(bots []dto.AgentFeishuBot) dto.AgentFeishuBot { |
| 1590 | for _, bot := range bots { |
no outgoing calls
no test coverage detected