Source File
signup.go
Belonging Package
github.com/gotd/td/telegram/auth
package authimport ()// SignUpRequired means that log in failed because corresponding account// does not exist, so sign up is required.type SignUpRequired struct {TermsOfService tg.HelpTermsOfService}// Is returns true if err is SignUpRequired.func ( *SignUpRequired) ( error) bool {, := .(*SignUpRequired)return}func ( *SignUpRequired) () string {return "account with provided number does not exist (sign up required)"}// checkResult checks that `a` is *tg.AuthAuthorization and returns authorization result or error.func ( tg.AuthAuthorizationClass) (*tg.AuthAuthorization, error) {switch a := .(type) {case *tg.AuthAuthorization:return , nil // okcase *tg.AuthAuthorizationSignUpRequired:return nil, &SignUpRequired{TermsOfService: .TermsOfService,}default:return nil, errors.Errorf("got unexpected response %T", )}}
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |