Skip to content

Commit f3a4038

Browse files
committed
Style: 코드 컨벤션을 위한 import 순서 정렬
1 parent e02bb2d commit f3a4038

31 files changed

Lines changed: 22 additions & 45 deletions

Projects/App/Sources/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
// Created by 최정인 on 6/15/25.
66
//
77

8-
import UIKit
98
import DataSource
109
import KakaoSDKCommon
10+
import UIKit
1111

1212
@main
1313
class AppDelegate: UIResponder, UIApplicationDelegate {

Projects/App/Sources/DependencyInjection.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// Created by 최정인 on 6/26/25.
66
//
77

8-
import Foundation
98
import DataSource
109
import Domain
11-
import Presentation
10+
import Foundation
1211
import NetworkService
1312
import Persistence
13+
import Presentation
1414
import Shared
1515

1616
extension DIContainer {

Projects/App/Sources/SceneDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
// Created by 최정인 on 6/15/25.
66
//
77

8-
import UIKit
98
import KakaoSDKAuth
109
import Presentation
1110
import Shared
11+
import UIKit
1212

1313
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
1414
var window: UIWindow?

Projects/Domain/Sources/DomainDependencyAssembler.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
// Created by 최정인 on 6/26/25.
66
//
77

8-
import Foundation
98
import Shared
109

1110
public struct DomainDependencyAssembler: DependencyAssemblerProtocol {

Projects/Domain/Sources/UseCase/Auth/LoginUseCase.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
// Created by 최정인 on 6/30/25.
66
//
77

8-
import Foundation
9-
108
public final class LoginUseCase: LoginUseCaseProtocol {
119
private let authRepository: AuthRepositoryProtocol
1210

Projects/Domain/Sources/UseCase/Auth/LogoutUseCase.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
// Created by 최정인 on 7/4/25.
66
//
77

8-
import Foundation
9-
108
public final class LogoutUseCase: LogoutUseCaseProtocol {
119
private let authRepository: AuthRepositoryProtocol
1210

Projects/Domain/Sources/UseCase/Auth/WithdrawUseCase.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
// Created by 최정인 on 7/4/25.
66
//
77

8-
import Foundation
9-
108
public final class WithdrawUseCase: WithdrawUseCaseProtocol {
119
private let authRepository: AuthRepositoryProtocol
1210

Projects/Domain/Sources/UseCase/Onboarding/OnboardingUseCase.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
// Created by 최정인 on 7/15/25.
66
//
77

8-
import Foundation
9-
108
public final class OnboardingUseCase: OnboardingUseCaseProtocol {
119
private let onboardingRepository: OnboardingRepositoryProtocol
1210

Projects/NetworkService/Sources/Extension/Endpoint+.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// Created by 최정인 on 6/21/25.
66
//
77

8-
import Foundation
98
import DataSource
9+
import Foundation
1010

1111
extension Endpoint {
1212
func makeURLRequest() throws -> URLRequest {

Projects/NetworkService/Sources/NetworkDependencyAssembler.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
// Created by 최정인 on 6/26/25.
66
//
77

8-
import Foundation
98
import DataSource
109
import Shared
1110

0 commit comments

Comments
 (0)