mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 13:37:11 +00:00
16 lines
882 B
Swift
16 lines
882 B
Swift
import ArgumentParser
|
|
import Foundation
|
|
|
|
@main
|
|
struct Tools: AsyncParsableCommand {
|
|
static var configuration = CommandConfiguration(abstract: "A collection of command line tools for ElementX",
|
|
subcommands: [BuildSDK.self,
|
|
SetupProject.self,
|
|
OutdatedPackages.self,
|
|
DownloadStrings.self,
|
|
Locheck.self,
|
|
GenerateSDKMocks.self,
|
|
GenerateSAS.self,
|
|
AppIconBanner.self])
|
|
}
|