Skip to content

Commit

Permalink
style: 불필요 import 및 줄바꿈 수정(#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
sozohoy committed Feb 27, 2024
1 parent b1c6e63 commit 94fbb28
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

import Foundation

import Alamofire

final class DefaultLectureRepository: LectureRepository {

func fetch(
Expand Down
5 changes: 1 addition & 4 deletions SUWIKI/SUWIKI/Domain/UseCases/Auth/SignInUseCase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ final class DefaultSignInUseCase: SignInUseCase {
id: String,
password: String
) async throws -> SignIn {
try await repository.login(
id: id,
password: password
)
try await repository.login(id: id, password: password)
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ final class DefaultFetchLectureUseCase: FetchLectureUseCase {
page: Int,
major: String?
) async throws -> [Lecture] {
try await repository.fetch(option: option,
page: page,
major: major)
try await repository.fetch(option: option, page: page, major: major)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ final class DefaultSearchLectureUseCase: SearchLectureUseCase {
page: Int,
major: String?
) async throws -> [Lecture] {
try await repository.search(searchText: searchText,
option: option,
page: page,
major: major)
try await repository.search(searchText: searchText, option: option, page: page, major: major)
}
}

0 comments on commit 94fbb28

Please sign in to comment.