-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
512 additions
and
523 deletions.
There are no files selected for viewing
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
507 changes: 0 additions & 507 deletions
507
Plugins/UtilityPlugin/ProjectDescriptionHelpers/Dependency+Project.swift
This file was deleted.
Oops, something went wrong.
106 changes: 106 additions & 0 deletions
106
Plugins/UtilityPlugin/ProjectDescriptionHelpers/Dependency/Dependency+Extension.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,106 @@ | ||
import Foundation | ||
import ProjectDescription | ||
|
||
// MARK: Project | ||
extension Monster { | ||
public struct Features { | ||
public struct Start { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
|
||
public struct Vender { | ||
public struct Auth { | ||
public struct Login { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
|
||
public struct SignUp { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
} | ||
} | ||
|
||
public struct User { | ||
public struct Auth { | ||
public struct Login { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
|
||
public struct SignUp { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
} | ||
public struct Main { | ||
public struct Home { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
|
||
public struct Community { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
|
||
public struct Shop { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
|
||
public struct Style { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
|
||
public struct Search { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
} | ||
public struct Profile { | ||
public struct OtherProfile { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
|
||
public struct UserProfile { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
|
||
public struct VendorProfile { | ||
public struct Data {} | ||
public struct Domain {} | ||
public struct UserInterface {} | ||
} | ||
} | ||
} | ||
} | ||
public struct Core {} | ||
|
||
public struct LKNetwork {} | ||
|
||
public struct ResourceKit {} | ||
|
||
public struct ThirdParty {} | ||
|
||
public struct TokenManager {} | ||
|
||
public struct DesignSystem {} | ||
} |
Oops, something went wrong.