Skip to content

Commit 6daf6d6

Browse files
committed
refactor import 수정
1 parent 89d307c commit 6daf6d6

21 files changed

+21
-21
lines changed

Projects/App/Sources/Splash/SplashViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import BaseFeature
66
import BaseFeatureInterface
77
import BroadcastDomainInterface
88
import DesignSystem
9-
import EasyLayoutModule
9+
import EasyLayout
1010
import LiveStationDomainInterface
1111
import LiveStreamFeatureInterface
1212
import Lottie

Projects/Features/AuthFeature/Sources/SignUpViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import UIKit
33

44
import BaseFeature
55
import DesignSystem
6-
import EasyLayoutModule
6+
import EasyLayout
77
import Lottie
88

99
public class SignUpViewController: BaseViewController<SignUpViewModel> {

Projects/Features/LiveStreamFeature/Sources/Chating/Views/ChatEmptyView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import UIKit
22

33
import BaseFeature
44
import DesignSystem
5-
import EasyLayoutModule
5+
import EasyLayout
66

77
final class ChatEmptyView: BaseView {
88
private let imageView = UIImageView()

Projects/Features/LiveStreamFeature/Sources/Chating/Views/ChatInputField.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import UIKit
33

44
import BaseFeature
55
import DesignSystem
6-
import EasyLayoutModule
6+
import EasyLayout
77

88
final class ChatInputField: BaseView {
99
private let heartButton = UIButton()

Projects/Features/LiveStreamFeature/Sources/Chating/Views/ChattingCell.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import UIKit
22

33
import BaseFeature
44
import DesignSystem
5-
import EasyLayoutModule
5+
import EasyLayout
66

77
final class ChattingCell: BaseTableViewCell {
88
private let nameLabel = UILabel()

Projects/Features/LiveStreamFeature/Sources/Chating/Views/ChattingListView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import UIKit
33

44
import BaseFeature
55
import DesignSystem
6-
import EasyLayoutModule
6+
import EasyLayout
77

88
protocol ChatInputFieldAction {
99
var sendButtonDidTap: AnyPublisher<ChatInfo?, Never> { get }

Projects/Features/LiveStreamFeature/Sources/Chating/Views/SystemAlarmCell.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import UIKit
22

33
import BaseFeature
44
import DesignSystem
5-
import EasyLayoutModule
5+
import EasyLayout
66

77
final class SystemAlarmCell: BaseTableViewCell {
88
private let contentLabel = UILabel()

Projects/Features/LiveStreamFeature/Sources/Player/ViewControllers/LiveStreamViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import UIKit
33

44
import BaseFeature
55
import DesignSystem
6-
import EasyLayoutModule
6+
import EasyLayout
77

88
public final class LiveStreamViewController: BaseViewController<LiveStreamViewModel> {
99
private let chattingList = ChattingListView()

Projects/Features/LiveStreamFeature/Sources/Player/Views/LiveStreamInfoView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import UIKit
22

33
import BaseFeature
44
import DesignSystem
5-
import EasyLayoutModule
5+
import EasyLayout
66

77
final class LiveStreamInfoView: BaseView {
88
private let titleLabel = UILabel()

Projects/Features/LiveStreamFeature/Sources/Player/Views/ShookPlayerView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import UIKit
44

55
import BaseFeature
66
import DesignSystem
7-
import EasyLayoutModule
7+
import EasyLayout
88

99
protocol ShhokPlayerViewState {
1010
func updataePlayState(_ isPlaying: Bool)

0 commit comments

Comments
 (0)