package response import "server/dao" type Channel struct { dao.Channel } type ChannelList struct { Total int64 `json:"total"` List []dao.Channel `json:"list"` }