Peekaboo/swift-cli/Sources/peekaboo/main.swift
Peter Steinberger 2619f2a916 Add swift CLI
2025-05-23 05:40:27 +02:00

15 lines
No EOL
447 B
Swift

import Foundation
import ArgumentParser
struct PeekabooCommand: ParsableCommand {
static let configuration = CommandConfiguration(
commandName: "peekaboo",
abstract: "A macOS utility for screen capture, application listing, and window management",
version: "1.1.1",
subcommands: [ImageCommand.self, ListCommand.self],
defaultSubcommand: ImageCommand.self
)
}
// Entry point
PeekabooCommand.main()