summaryrefslogtreecommitdiff
path: root/lib/models.go
blob: ccc760107ef4ea3f84c9224169357804796f1943 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package lib

type Message struct {
	From    string
	To      int64
	Text    string
	Images  []string
	Sticker string
}

type Routing struct {
	TgID int64
	TTID int64
}