2019-12-29 03:45:12 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2019-12-29 04:52:50 +01:00
|
|
|
type DataBackup struct {
|
|
|
|
Messages []ChatWarsMessage `json:"messages"`
|
|
|
|
}
|
|
|
|
|
2019-12-29 03:45:12 +01:00
|
|
|
type ChatWarsMessage struct {
|
|
|
|
TGUserID64 int64 `json:"tg_user_id"`
|
|
|
|
TGSenderUserID64 int64 `json:"tg_sender_user_id"`
|
|
|
|
Date time.Time `json:"date"`
|
|
|
|
ID64 int64 `json:"id"`
|
|
|
|
ChatID64 int64 `json:"chat_id"`
|
|
|
|
Text string `json:"text"`
|
|
|
|
}
|