Beam/Tools/Sources/Tools.swift
Mauro 088ca622a1
Generating SDK Mocks through the usage of swift run tools generate-sdk-mocks (#982)
* basic implementation, that works for now only with the local SDK

* replaced a handmade mock with a generated mock
2023-05-30 09:48:55 +02:00

14 lines
707 B
Swift

import ArgumentParser
import Foundation
@main
struct Tools: ParsableCommand {
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])
}