(channelId int, channelType int, channelName string, isMultiKey bool, usingKey string, autoBan bool)
| 10 | } |
| 11 | |
| 12 | func NewChannelError(channelId int, channelType int, channelName string, isMultiKey bool, usingKey string, autoBan bool) *ChannelError { |
| 13 | return &ChannelError{ |
| 14 | ChannelId: channelId, |
| 15 | ChannelType: channelType, |
| 16 | ChannelName: channelName, |
| 17 | IsMultiKey: isMultiKey, |
| 18 | AutoBan: autoBan, |
| 19 | UsingKey: usingKey, |
| 20 | } |
| 21 | } |
no outgoing calls
no test coverage detected