Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryVoid authored Sep 4, 2024
1 parent dfba153 commit 3007829
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,21 @@ tuist edit
```
> module.swift 에 feature 정의하기
```
// module.swift
// MARK: Feature
public extension Module {
enum Feature: String, CaseIterable {
case Auth
case Main
case Base
public static let name: String = "Feature"
}
}
```

 **6.** Core 생성하기
```sh
tuist scaffold core --name Utility
Expand All @@ -37,7 +52,7 @@ tuist scaffold core --name Utility
```
// module.swift
// MARK: - Core
// MARK: Core
public extension Module {
enum Core: String, CaseIterable {
case Entity
Expand Down

0 comments on commit 3007829

Please sign in to comment.