package model import "time" type Message struct { ID int `db:"id" json:"id"` SenderID string `db:"sender_id" json:"-"` SenderName string `db:"sender_name" json:"sender_name"` Channel int `db:"channel_id" json:"channel_id"` Time time.Time `db:"time" json:"time"` Content string `db:"content" json:"content"` }