cwtch/model/message.go

14 lines
150 B
Go
Raw Normal View History

2018-03-09 20:44:13 +00:00
package model
import (
"time"
)
type Message struct {
Timestamp time.Time
PeerID string
Message string
Signature []byte
Verified bool
}