1
0
telegram/login/constants.go
2018-04-19 18:02:15 +05:00

13 lines
264 B
Go

package login
// Key... represents available and supported data keys
const (
KeyAuthDate = "auth_date"
KeyFirstName = "first_name"
KeyHash = "hash"
KeyID = "id"
KeyLastName = "last_name"
KeyPhotoURL = "photo_url"
KeyUsername = "username"
)