Skip to content

Commit 7aa2c08

Browse files
Jeonhuisprituz
andcommitted
[style] fix wrong indent
Co-Authored-By: Dayeon Lee <[email protected]>
1 parent a453141 commit 7aa2c08

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

DailyQuest/DailyQuest/Data/Repositories/DefaultAuthRepository.swift

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,11 @@ final class DefaultAuthRepository {
1818
}
1919

2020
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-
}
21+
func signIn(email: String, password: String) -> Single<Bool> {
22+
return self.networkService.signIn(email: email, password: password)
23+
}
2524

26-
func signOut() -> Single<Bool> {
27-
return self.networkService.signOut()
28-
}
25+
func signOut() -> Single<Bool> {
26+
return self.networkService.signOut()
2927
}
3028
}

0 commit comments

Comments
 (0)