htmxginpongo/model/message.go

11 lines
109 B
Go
Raw Permalink Normal View History

2023-10-02 17:42:50 +02:00
package model
import "time"
type Message struct {
ID uint64
Name string
Text string
Time time.Time
}