Fix return type...

This commit is contained in:
Seth Moore 2016-01-10 10:50:08 -05:00
parent 054115bc89
commit e755370170

View file

@ -109,7 +109,7 @@ func (s *Session) Login(email string, password string) (token string, err error)
response, err := s.Request("POST", LOGIN, data) response, err := s.Request("POST", LOGIN, data)
if err != nil { if err != nil {
return response, err return "", err
} }
temp := struct { temp := struct {