feat(creator): 채널 공통 셸을 분리한다

This commit is contained in:
Yu Sung
2026-07-02 15:50:38 +09:00
parent d87d761670
commit 949c8cec8e
7 changed files with 167 additions and 165 deletions

View File

@@ -1,30 +0,0 @@
import Foundation
enum CreatorChannelHomeTab: CaseIterable, Hashable {
case home
case live
case audio
case series
case community
case fanTalk
case donation
var title: String {
switch self {
case .home:
return ""
case .live:
return "라이브"
case .audio:
return "오디오"
case .series:
return "시리즈"
case .community:
return "커뮤니티"
case .fanTalk:
return "팬Talk"
case .donation:
return "후원"
}
}
}