Scan implements sql.Scanner interface
(value interface{})
| 63 | |
| 64 | // Scan implements sql.Scanner interface |
| 65 | func (c *ChannelInfo) Scan(value interface{}) error { |
| 66 | bytesValue, _ := value.([]byte) |
| 67 | return common.Unmarshal(bytesValue, c) |
| 68 | } |
| 69 | |
| 70 | func (channel *Channel) getKeys() []string { |
| 71 | if channel.Key == "" { |
nothing calls this directly
no test coverage detected