19 lines
516 B
Go
19 lines
516 B
Go
package constants
|
|
|
|
const (
|
|
// Telegram
|
|
MaxAuthTime = 300
|
|
ChatLink = "https://t.me/"
|
|
TelegramShare = "https://t.me/share/url?text=%s&url=%s"
|
|
TelegramGroupPhotoURL = "https://api.telegram.org/file/bot%s/%s"
|
|
TelegramMessageLimit = 4000
|
|
// External resources (Support API URI`s)
|
|
|
|
// PostgreSQL
|
|
MaxRecordsLimit = 9223372036854775807
|
|
MaxInt = 147483647
|
|
DateLayout = "2006-01-02T15:04:05.000Z"
|
|
MinDate = "4713-01-01 BC"
|
|
MaxDate = "5874897-12-31"
|
|
)
|