memos/plugin/telegram/user.go
Athurg Gooth 9987337eca
fix: all ID from int to int64 to avoid 32bits machine break (#2191)
Fix all ID from int to int64 to avoid 32bits machine break
2023-09-06 21:14:07 +08:00

6 lines
61 B
Go

package telegram
type User struct {
ID int64 `json:"id"`
}