12345678910111213141516171819202122232425262728293031323334353637383940 |
-
-
- #import "FIRGitHubAuthProvider.h"
-
- #import "FIRGitHubAuthCredential.h"
- #import "FIRAuthExceptionUtils.h"
-
-
-
- NS_ASSUME_NONNULL_BEGIN
-
- @implementation FIRGitHubAuthProvider
-
- - (instancetype)init {
- [FIRAuthExceptionUtils raiseMethodNotImplementedExceptionWithReason:
- @"This class is not meant to be initialized."];
- return nil;
- }
-
- + (FIRAuthCredential *)credentialWithToken:(NSString *)token {
- return [[FIRGitHubAuthCredential alloc] initWithToken:token];
- }
-
- @end
-
- NS_ASSUME_NONNULL_END
|