generated from GSM-MSG/MSG-Repository-Generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ :: [#128] ConfirmationDialogFeature / Interface 분리
- Loading branch information
Showing
7 changed files
with
15 additions
and
10 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...s/Factory/ConfirmationDialogFactory.swift → ...Interface/ConfirmationDialogFactory.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import BaseFeature | ||
import BaseFeatureInterface | ||
import UIKit | ||
|
||
public protocol ConfirmationDialogFactory { | ||
func makeViewController( | ||
title: String, | ||
description: String, | ||
confirmAction: @escaping () async -> Void | ||
) -> any StoredViewControllable | ||
) -> any RoutedViewControllable | ||
} |
1 change: 0 additions & 1 deletion
1
Projects/Feature/ConfirmationDialogFeature/Interface/Interface.swift
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
Projects/Feature/ConfirmationDialogFeature/Sources/Assembly/ConfirmationDialogAssembly.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...cts/Feature/ConfirmationDialogFeature/Sources/Factory/ConfirmationDialogFactoryImpl.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
Projects/Feature/MyViolationListFeature/Interface/Interface.swift
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
Projects/Feature/MyViolationListFeature/Interface/MyViolationListFactory.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// | ||
// MyViolationListFactory.swift | ||
// MyViolationListFeatureInterface | ||
// | ||
// Created by 최형우 on 2023/08/29. | ||
// Copyright © 2023 com.msg. All rights reserved. | ||
// | ||
|
||
import Foundation |
5 changes: 0 additions & 5 deletions
5
Projects/Feature/MyViolationListFeature/Sources/Factory/MyViolationListFactory.swift
This file was deleted.
Oops, something went wrong.