gocwexp/def.go

17 lines
372 B
Go
Raw Normal View History

2019-12-29 03:45:12 +01:00
package main
import (
"time"
tb "gopkg.in/tucnak/telebot.v2"
)
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"`
}