This commit is contained in:
2023-10-02 17:42:50 +02:00
commit a42c8943fc
19 changed files with 553 additions and 0 deletions

10
model/message.go Normal file
View File

@ -0,0 +1,10 @@
package model
import "time"
type Message struct {
ID uint64
Name string
Text string
Time time.Time
}