We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a453141 commit 7aa2c08Copy full SHA for 7aa2c08
DailyQuest/DailyQuest/Data/Repositories/DefaultAuthRepository.swift
@@ -18,13 +18,11 @@ final class DefaultAuthRepository {
18
}
19
20
extension DefaultAuthRepository: AuthRepository {
21
- protocol AuthRepository {
22
- func signIn(email: String, password: String) -> Single<Bool> {
23
- return self.networkService.signIn(email: email, password: password)
24
- }
+ func signIn(email: String, password: String) -> Single<Bool> {
+ return self.networkService.signIn(email: email, password: password)
+ }
25
26
- func signOut() -> Single<Bool> {
27
- return self.networkService.signOut()
28
+ func signOut() -> Single<Bool> {
+ return self.networkService.signOut()
29
30
0 commit comments