(in []MsgCredClient)
| 1117 | } |
| 1118 | |
| 1119 | func pbClientCredsSerialize(in []MsgCredClient) []*pbx.ClientCred { |
| 1120 | if in == nil { |
| 1121 | return nil |
| 1122 | } |
| 1123 | |
| 1124 | out := make([]*pbx.ClientCred, len(in)) |
| 1125 | for i := range in { |
| 1126 | out[i] = pbClientCredSerialize(&in[i]) |
| 1127 | } |
| 1128 | |
| 1129 | return out |
| 1130 | } |
| 1131 | |
| 1132 | func pbClientCredDeserialize(in *pbx.ClientCred) *MsgCredClient { |
| 1133 | if in == nil { |
no test coverage detected
searching dependent graphs…