Files
letro-ios/Tools/Sources/Tools.swift
2022-12-15 09:35:00 +00:00

9 lines
276 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])
}